diff --git a/Cargo.toml b/Cargo.toml index 66e9c9f..f2550d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ lz4_flex = "0.11.1" nix = "0.30.1" once_cell = "1.19.0" prettytable-rs = "0.10.0" -pwhash = "1.0.1" +pwhash = "1.0.0" regex = "1.9.5" rusqlite = { version = "0.37.0", features = ["bundled", "array", "chrono"] } rusqlite_migration = "2.3.0" diff --git a/src/main.rs b/src/main.rs index 4632b1d..870417a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -75,7 +75,6 @@ fn main() -> Result<(), Error> { // Create unified settings let settings = Settings::from_config_and_args(&config, &args, default_dir)?; - debug!("MAIN: Unified settings: {:?}", settings); let ids = &mut Vec::new(); let tags = &mut Vec::new(); @@ -164,6 +163,7 @@ fn main() -> Result<(), Error> { debug!("MAIN: ids: {:?}", ids); debug!("MAIN: tags: {:?}", tags); debug!("MAIN: mode: {:?}", mode); + debug!("MAIN: settings: {:?}", settings); unsafe { libc::umask(0o077);