1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ private void RenameFiles(List<MovieFile> movieFiles, Movie movie, string oldMovi
}
catch (Exception ex)
{
_logger.Error(ex, "Failed to rename file: " + oldMovieFilePath);
_logger.Error(ex, "Failed to rename file: {0}", oldMovieFilePath);
}
}