Skip to content

Commit 42cead6

Browse files
authored
Bring back integration for env_logger. (#93)
1 parent 0fb927c commit 42cead6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@ derivative = "2.2.0"
4343
async-lock = "3.4.0"
4444
hex = "0.4.3"
4545
pythonize = "0.23.0"
46-
# TODO: Switch to a stable tag of mistralrs after a new release is tagged.
47-
mistralrs = { git = "https://github.com/EricLBuehler/mistral.rs.git", features = [
48-
"metal",
49-
] }
5046
schemars = "0.8.22"
5147
openssl = { version = "0.10.71", features = ["vendored"] }
5248
console-subscriber = "0.4.1"
49+
env_logger = "0.11.7"

src/lib_context.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ impl LibContext {
5050

5151
pub fn create_lib_context(settings: settings::Settings) -> Result<LibContext> {
5252
console_subscriber::init();
53+
env_logger::init();
5354

5455
let runtime = Runtime::new()?;
5556
let (pool, all_css) = runtime.block_on(async {

0 commit comments

Comments
 (0)