1
Fork 0

add debug-logging to config.toml

This commit is contained in:
Gus Wynn 2020-09-10 14:58:45 -07:00
parent b4bdc07ff5
commit 15aa6f31b9
5 changed files with 25 additions and 1 deletions

View file

@ -9,7 +9,7 @@ crate-type = ["dylib"]
[dependencies]
libc = "0.2"
tracing = { version = "0.1.18", features = ["release_max_level_info"] }
tracing = { version = "0.1.18" }
tracing-subscriber = { version = "0.2.10", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
rustc_middle = { path = "../rustc_middle" }
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
@ -38,3 +38,4 @@ winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"]
[features]
llvm = ['rustc_interface/llvm']
release_max_level_info = ['tracing/release_max_level_info']