Skip to content

Commit 8abecad

Browse files
committed
Update default log level.
1 parent d220a00 commit 8abecad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/database_upgrader/src/upgrader/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ async fn delete_stale_files(
435435
let mut files = vec![
436436
options.paths.identity_dir().to_owned(),
437437
options.paths.audit_file().to_owned(),
438-
options.paths.global_preferences_file().to_owned(),
438+
options.paths.global_preferences_file(),
439439
];
440440

441441
for account in accounts {

crates/logs/src/logger.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
1717
pub const LOG_FILE_NAME: &str = "saveoursecrets.log";
1818

1919
const DEFAULT_LOG_LEVEL: &str =
20-
"sos=info,sos_net=debug,sos_bindings=debug,sos_backend=debug,sos_database=debug,sos_protocol=debug,sos_app=debug";
20+
"sos=info,sos_net=debug,sos_bindings=debug,sos_backend=debug,sos_database=debug,sos_protocol=debug,sos_app=debug,sos_database_upgrader=debug";
2121

2222
/// State of the log files on disc.
2323
pub struct LogFileStatus {

0 commit comments

Comments
 (0)