We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04ec14e commit c529ec8Copy full SHA for c529ec8
autonomi-cli/src/main.rs
@@ -49,14 +49,16 @@ async fn main() -> Result<()> {
49
50
fn init_logging_and_metrics(opt: &Opt) -> Result<(ReloadHandle, Option<WorkerGuard>)> {
51
let logging_targets = vec![
52
+ ("autonomi-cli".to_string(), Level::TRACE),
53
+ ("autonomi".to_string(), Level::TRACE),
54
+ ("evmlib".to_string(), Level::TRACE),
55
+ ("sn_evm".to_string(), Level::TRACE),
56
("sn_networking".to_string(), Level::INFO),
57
("sn_build_info".to_string(), Level::TRACE),
- ("autonomi-cli".to_string(), Level::TRACE),
58
("sn_logging".to_string(), Level::TRACE),
59
("sn_peers_acquisition".to_string(), Level::TRACE),
60
("sn_protocol".to_string(), Level::TRACE),
61
("sn_registers".to_string(), Level::TRACE),
- ("sn_evm".to_string(), Level::TRACE),
62
];
63
let mut log_builder = LogBuilder::new(logging_targets);
64
log_builder.output_dest(opt.log_output_dest.clone());
0 commit comments