Fix logging message for directory watcher error

This commit is contained in:
Bogdan
2025-01-28 21:57:30 +02:00
parent 917f705695
commit 51a38bc648
@@ -183,7 +183,7 @@ namespace NzbDrone.Core.MediaFiles
}
else
{
_logger.Error(ex, "Error in Directory watcher for: {0}" + dw.Path);
_logger.Error(ex, "Error in Directory watcher for: {0}", dw.Path);
DisposeWatcher(dw, true);
}