Fix parameter in logging statement from AddMovieService

This commit is contained in:
Qstick 2020-05-25 16:54:58 -04:00
parent 9ede227178
commit f0be9994b1
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ namespace NzbDrone.Core.Movies
}
catch (MovieNotFoundException)
{
_logger.Error("TmdbId {1} was not found, it may have been removed from TMDb.", newMovie.TmdbId);
_logger.Error("TmdbId {0} was not found, it may have been removed from TMDb.", newMovie.TmdbId);
throw new ValidationException(new List<ValidationFailure>
{