Skip to content

Commit

Permalink
fix: log storage not disk
Browse files Browse the repository at this point in the history
  • Loading branch information
Devdutt Shenoi authored Oct 19, 2023
1 parent 238d5e2 commit e83f69d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uplink/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fn initialize_logging(commandline: &CommandLine) -> ReloadHandle {
match commandline.modules.clone().into_iter().reduce(|e, acc| format!("{e}={level},{acc}"))
{
Some(f) => format!("{f}={level}"),
_ => format!("uplink={level},disk={level}"),
_ => format!("uplink={level},storage={level}"),
};

let builder = tracing_subscriber::fmt()
Expand Down

0 comments on commit e83f69d

Please sign in to comment.