Skip to content

Commit

Permalink
chore: move debug log to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 12, 2024
1 parent 224a0b5 commit 5c6c884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ pub trait Backend: Debug + Send + Sync {
for path in touch_dirs {
let err = file::touch_dir(&path);
if let Err(err) = err {
debug!("error touching config file: {:?} {:?}", path, err);
trace!("error touching config file: {:?} {:?}", path, err);
}
}
if let Err(err) = file::remove_file(self.incomplete_file_path(&tv)) {
Expand Down

0 comments on commit 5c6c884

Please sign in to comment.