Skip to content

Commit

Permalink
updated some logs to be more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
Flaminel committed Jan 10, 2025
1 parent a7519e5 commit fd68e36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/Infrastructure/Verticals/Arr/LidarrClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public override bool IsRecordValid(QueueRecord record)
{
if (record.ArtistId is 0 || record.AlbumId is 0)
{
_logger.LogDebug("skip | item information missing | {title}", record.Title);
_logger.LogDebug("skip | artist id and/or album id missing | {title}", record.Title);
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion code/Infrastructure/Verticals/Arr/RadarrClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public override bool IsRecordValid(QueueRecord record)
{
if (record.MovieId is 0)
{
_logger.LogDebug("skip | item information missing | {title}", record.Title);
_logger.LogDebug("skip | movie id missing | {title}", record.Title);
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion code/Infrastructure/Verticals/Arr/SonarrClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public override bool IsRecordValid(QueueRecord record)
{
if (record.EpisodeId is 0 || record.SeriesId is 0)
{
_logger.LogDebug("skip | item information missing | {title}", record.Title);
_logger.LogDebug("skip | episode id and/or series id missing | {title}", record.Title);
return false;
}

Expand Down

0 comments on commit fd68e36

Please sign in to comment.