Change file watcher log message to debug

This commit is contained in:
Luke Street 2025-08-15 16:38:06 -06:00
parent 4302821615
commit 678210d58a

View File

@ -56,7 +56,7 @@ pub fn create_watcher(
continue; continue;
}; };
if patterns.is_match(path) && !ignore_patterns.is_match(path) { if patterns.is_match(path) && !ignore_patterns.is_match(path) {
log::info!("File modified: {}", path.display()); log::debug!("File modified: {}", path.display());
any_match = true; any_match = true;
} }
} }