fix(node): update default log level to warn (#1801)

🤦
This commit is contained in:
Will Jones
2024-11-06 09:13:53 -08:00
committed by GitHub
parent 0cfd9ed18e
commit b9921d56cc

View File

@@ -82,7 +82,7 @@ pub struct OpenTableOptions {
#[napi::module_init]
fn init() {
let env = Env::new()
.filter_or("LANCEDB_LOG", "trace")
.filter_or("LANCEDB_LOG", "warn")
.write_style("LANCEDB_LOG_STYLE");
env_logger::init_from_env(env);
}