1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fixed: Log statement in movie rename service

This commit is contained in:
Qstick
2019-09-02 11:55:02 -04:00
committed by GitHub
parent b42004b32c
commit a3525252b7
@@ -128,7 +128,7 @@ namespace NzbDrone.Core.MediaFiles
}
catch (Exception ex)
{
_logger.Error(ex, "Failed to rename file: " + oldMovieFilePath);
_logger.Error(ex, "Failed to rename file: {0}", oldMovieFilePath);
}
}