Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Sep 15, 2023
1 parent 2afe4eb commit 93d1b86
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ impl Cache {
CACHE_TYPE_TRANSACTIONS,
] {
fs::remove_dir_all(Path::new(dir).join(cache_type)).unwrap_or_else(|err| {
log::warn!("failed removing directory {:?}: {:?}", Path::new(dir).join(cache_type), err)
log::warn!(
"failed removing directory {:?}: {:?}",
Path::new(dir).join(cache_type),
err
)
});
}

Expand Down

0 comments on commit 93d1b86

Please sign in to comment.