Skip to content

Commit

Permalink
logger: Fix log file name
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickelectric committed Mar 20, 2024
1 parent 70131bc commit 314b112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logger/mod.rs
Expand Up @@ -41,7 +41,7 @@ pub fn init() {
EnvFilter::new(LevelFilter::DEBUG.to_string())
};
let dir = cli::args().as_ref().log_path.clone();
let file_appender = tracing_appender::rolling::hourly(dir, "mavlink-camera-manager.", ".log");
let file_appender = tracing_appender::rolling::hourly(dir, "linux2rest.", ".log");
let file_layer = fmt::Layer::new()
.with_writer(file_appender)
.with_ansi(false)
Expand Down

0 comments on commit 314b112

Please sign in to comment.