diff --git a/src/API/src/Services/RadarrMovieService.cs b/src/API/src/Services/RadarrMovieService.cs index 9e9b0b4..1250f7b 100644 --- a/src/API/src/Services/RadarrMovieService.cs +++ b/src/API/src/Services/RadarrMovieService.cs @@ -34,7 +34,7 @@ public override async Task InvokeAsync(CancellationToken cancellationToken) continue; } - logger.LogInformation("Sending movie '{Title} ({Year})' to Radarr...", item.Title, item.Year); + logger.LogDebug("Sending movie '{Title} ({Year})' to Radarr...", item.Title, item.Year); RadarrMovie? movie = await radarrClientCollection.GetMovieByTmdbAsync(item.TmdbId); if(movie is null) diff --git a/src/API/src/Services/SonarrSeriesService.cs b/src/API/src/Services/SonarrSeriesService.cs index 139303b..62e7771 100644 --- a/src/API/src/Services/SonarrSeriesService.cs +++ b/src/API/src/Services/SonarrSeriesService.cs @@ -34,7 +34,7 @@ public override async Task InvokeAsync(CancellationToken cancellationToken) continue; } - logger.LogInformation("Sending series '{Title} ({Year})' to Sonarr...", item.Title, item.Year); + logger.LogDebug("Sending series '{Title} ({Year})' to Sonarr...", item.Title, item.Year); SonarrSeries? series = await sonarrClientCollection.GetSeriesByTvdbAsync(item.TvdbId); if(series is null) diff --git a/src/Cache/Core/src/Services/CacheEvictionService.cs b/src/Cache/Core/src/Services/CacheEvictionService.cs index bd9ff0d..dd6d567 100644 --- a/src/Cache/Core/src/Services/CacheEvictionService.cs +++ b/src/Cache/Core/src/Services/CacheEvictionService.cs @@ -42,7 +42,7 @@ private async Task EvictCachesAsync(CancellationToken cancellationToken) return; } - logger.LogInformation("Evicting expired cache entries..."); + logger.LogDebug("Evicting expired cache entries..."); foreach(ICachingProvider provider in services.GetServices()) { diff --git a/src/Provider.Radarr/src/RadarrClient.cs b/src/Provider.Radarr/src/RadarrClient.cs index 6bf628a..00d52bc 100644 --- a/src/Provider.Radarr/src/RadarrClient.cs +++ b/src/Provider.Radarr/src/RadarrClient.cs @@ -185,7 +185,7 @@ await this._client .Request($"/api/v3/movie/{movie.Id}") .PutJsonAsync(requestBody); - logger.LogInformation( + logger.LogDebug( "Updated '{Title} ({Year})' in Radarr instance '{Instance}'.", movie.Title, movie.Year, @@ -198,7 +198,7 @@ await this._client .Request("/api/v3/movie") .PostJsonAsync(requestBody); - logger.LogInformation( + logger.LogDebug( "Added '{Title} ({Year})' to Radarr instance '{Instance}'.", movie.Title, movie.Year, diff --git a/src/Provider.Sonarr/src/SonarrClient.cs b/src/Provider.Sonarr/src/SonarrClient.cs index 1c492e0..0ea2d43 100644 --- a/src/Provider.Sonarr/src/SonarrClient.cs +++ b/src/Provider.Sonarr/src/SonarrClient.cs @@ -146,7 +146,7 @@ await this._client .Request($"/api/v3/series/{series.Id}") .PutJsonAsync(requestBody); - logger.LogInformation( + logger.LogDebug( "Updated '{Title} ({Year})' in Sonarr instance '{Instance}'.", series.Title, series.Year, @@ -159,7 +159,7 @@ await this._client .Request("/api/v3/series") .PostJsonAsync(requestBody); - logger.LogInformation( + logger.LogDebug( "Added '{Title} ({Year})' to Sonarr instance '{Instance}'.", series.Title, series.Year,