Skip to content

Commit

Permalink
Generating The ... Thumbnail is now a Trace level log
Browse files Browse the repository at this point in the history
  • Loading branch information
omanikhi committed Feb 26, 2025
1 parent a86972c commit 001d6ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PhotoFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ GENERATE THUMBNAILS
if (!nullColumns.Contains(column, StringComparer.InvariantCultureIgnoreCase)) continue;
}

Logger.LogDebug("Generating The {} Thumbnail For: {}", column, FullPath);
Logger.LogTrace("Generating The {} Thumbnail For: {}", column, FullPath);

// Generate the thumbnail.
if (!string.IsNullOrEmpty(FullPath)) thumbnail = GenerateThumbnail(FullPath, width, height, crop);
Expand Down
2 changes: 1 addition & 1 deletion VideoFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ GENERATE THUMBNAILS
if (!nullColumns.Contains(column, StringComparer.InvariantCultureIgnoreCase)) continue;
}

if (!sprite || (counter == 0)) Logger.LogDebug("Generating The {} Thumbnail For: {}", column, FullPath);
if (!sprite || (counter == 0)) Logger.LogTrace("Generating The {} Thumbnail For: {}", column, FullPath);

// Generate the thumbnail
if (!string.IsNullOrEmpty(FullPath)) thumbnail = GenerateThumbnail(FullPath, position, width, height, crop);
Expand Down

0 comments on commit 001d6ec

Please sign in to comment.