Fix sync log criticity

This commit is contained in:
sephrat 2022-04-26 18:51:06 +02:00
commit ae25e41b1b

View file

@ -163,7 +163,7 @@ namespace Ombi.Schedule.Jobs.Emby
|| existingTv.TheMovieDbId != tvShow.ProviderIds?.Tmdb || existingTv.TheMovieDbId != tvShow.ProviderIds?.Tmdb
|| existingTv.TvDbId != tvShow.ProviderIds?.Tvdb)) || existingTv.TvDbId != tvShow.ProviderIds?.Tvdb))
{ {
_logger.LogCritical($"Series '{tvShow.Name}' has different IDs, probably a reidentification."); _logger.LogDebug($"Series '{tvShow.Name}' has different IDs, probably a reidentification.");
await _repo.DeleteTv(existingTv); await _repo.DeleteTv(existingTv);
existingTv = null; existingTv = null;
} }