Small Logging Improvement (#3389)

This commit is contained in:
Joe Milazzo 2024-11-21 06:51:24 -06:00 committed by GitHub
parent 17a5d0d583
commit 349645bf32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 26 additions and 31 deletions

View file

@ -345,7 +345,7 @@ public class ScrobblingService : IScrobblingService
_unitOfWork.ScrobbleRepository.Attach(evt);
await _unitOfWork.CommitAsync();
_logger.LogDebug("Added Scrobbling Read update on {SeriesName} with Userid {UserId} ", series.Name, userId);
_logger.LogDebug("Added Scrobbling Read update on {SeriesName} - Volume: {VolumeNumber} Chapter: {ChapterNumber} for User: {UserId}", series.Name, evt.VolumeNumber, evt.ChapterNumber, userId);
}
catch (Exception ex)
{