Tracing improvements

This commit is contained in:
Pekka Enberg 2024-01-14 15:36:59 +02:00
parent 1d3560f9a7
commit 725eed964b
6 changed files with 29 additions and 0 deletions

View file

@ -19,5 +19,6 @@ anyhow = "1.0.75"
clap = { version = "4.4.0", features = ["derive"] }
cli-table = "0.4.7"
dirs = "5.0.1"
env_logger = "0.10.1"
limbo_core = { path = "../core" }
rustyline = "12.0.0"

View file

@ -29,6 +29,7 @@ struct Opts {
}
fn main() -> anyhow::Result<()> {
env_logger::init();
let opts = Opts::parse();
let path = opts.database.to_str().unwrap();
let io = Arc::new(limbo_core::PlatformIO::new()?);