From 71c17a272b89f8be95b26770a3e5b349ee5eac94 Mon Sep 17 00:00:00 2001 From: Micah <micah@uplift.games> Date: Fri, 8 Mar 2024 10:32:32 -0800 Subject: [PATCH] Make debug messages in metadata middleware better --- src/snapshot_middleware/meta_file.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/snapshot_middleware/meta_file.rs b/src/snapshot_middleware/meta_file.rs index f9782fcb1..615c5dfeb 100644 --- a/src/snapshot_middleware/meta_file.rs +++ b/src/snapshot_middleware/meta_file.rs @@ -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); @@ -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);