Skip to content

Commit

Permalink
Make debug messages in metadata middleware better
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekkonot committed Mar 8, 2024
1 parent b5657c5 commit 71c17a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/snapshot_middleware/meta_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl AdjacentMetadata {
let source = source.path();
if source != path {
log::debug!(
"Instance origin is mismatched so its metadata is being skipped. Path: {}",
"Instigating source for Instance is mismatched so its metadata is being skipped.\nPath: {}",
path.display()
);
return Ok(None);
Expand Down Expand Up @@ -261,7 +261,7 @@ impl DirectoryMetadata {
let source = source.path();
if source != path {
log::debug!(
"Instance origin is mismatched so its metadata is being skipped. Path: {}",
"Instigating source for Instance is mismatched so its metadata is being skipped.\nPath: {}",
path.display()
);
return Ok(None);
Expand Down

0 comments on commit 71c17a2

Please sign in to comment.