Further improvement to logging formatting and readability

This commit is contained in:
2026-01-25 09:11:45 -07:00
parent 82441d5247
commit 9bddc59fe2
2 changed files with 22 additions and 16 deletions

View File

@@ -19,7 +19,8 @@ public class MovieHelper(ILogger logger)
{
ArgumentNullException.ThrowIfNull(movie, "IsMovieStale process recieved a null movie. Logic failure. Exception thrown.");
_loggingHelper.LogDebugInformation("Start of scanning for movie: {Movie}", movie);
_loggingHelper.LogDebugInformation("-------------------------------------------------");
_loggingHelper.LogDebugInformation("Scanning movie: {Movie}", movie);
_loggingHelper.LogDebugInformation("-------------------------------------------------");
bool movieIsStale = false;