mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-03 17:48:17 +00:00
Disable tracing by default
This commit is contained in:
parent
4b714311b5
commit
591e8df377
6 changed files with 126 additions and 27 deletions
|
@ -18,5 +18,6 @@ path = "main.rs"
|
|||
anyhow = "1.0.75"
|
||||
clap = { version = "4.4.0", features = ["derive"] }
|
||||
dirs = "5.0.1"
|
||||
env_logger = "0.10.0"
|
||||
lig_core = { path = "../core" }
|
||||
rustyline = "12.0.0"
|
||||
|
|
|
@ -16,6 +16,7 @@ struct Opts {
|
|||
}
|
||||
|
||||
fn main() -> anyhow::Result<()> {
|
||||
env_logger::init();
|
||||
let opts = Opts::parse();
|
||||
let io = IO::new();
|
||||
let db = Database::open(Arc::new(io), opts.database.to_str().unwrap())?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue