diff --git a/Cargo.toml b/Cargo.toml index 7d068f123..d9b157ed0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,10 +43,7 @@ derivative = "2.2.0" async-lock = "3.4.0" hex = "0.4.3" pythonize = "0.23.0" -# TODO: Switch to a stable tag of mistralrs after a new release is tagged. -mistralrs = { git = "https://github.com/EricLBuehler/mistral.rs.git", features = [ - "metal", -] } schemars = "0.8.22" openssl = { version = "0.10.71", features = ["vendored"] } console-subscriber = "0.4.1" +env_logger = "0.11.7" diff --git a/src/lib_context.rs b/src/lib_context.rs index b18ca829c..f27ac7e0d 100644 --- a/src/lib_context.rs +++ b/src/lib_context.rs @@ -50,6 +50,7 @@ impl LibContext { pub fn create_lib_context(settings: settings::Settings) -> Result { console_subscriber::init(); + env_logger::init(); let runtime = Runtime::new()?; let (pool, all_css) = runtime.block_on(async {