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);
}
}