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
1 changed files with 1 additions and 1 deletions

View File

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