refactor(cli): refix log level for vault rescans
ci/woodpecker/push/woodpecker Pipeline was successful Details

refactor/sveltekit
Tomáš Mládek 2023-12-12 19:16:59 +01:00
parent 30e0f10ce8
commit 2f636288b6
1 changed files with 2 additions and 2 deletions

View File

@ -318,10 +318,10 @@ impl FsStore {
if let Some(idx) = maybe_existing_file {
existing_files_write.swap_remove(idx);
return if existing_file.valid {
info!("Unchanged: {:?}", path);
trace!("Unchanged: {:?}", path);
Ok(UpdatePathOutcome::Unchanged(path))
} else {
info!("Re-added: {:?}", path);
trace!("Re-added: {:?}", path);
Ok(UpdatePathOutcome::Added(path.clone()))
}
}