Skip to content

Commit 8e51096

Browse files
committed
Improve log messages
1 parent c382732 commit 8e51096

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher.Infrastructure/Image/ImageLoader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ private static async ValueTask<ImageResult> LoadInternalAsync(string path, bool
171171
}
172172
catch (System.Exception e2)
173173
{
174-
Log.Exception(ClassName, $"|ImageLoader.Load|Failed to get thumbnail for {path} on first try", e);
175-
Log.Exception(ClassName, $"|ImageLoader.Load|Failed to get thumbnail for {path} on second try", e2);
174+
Log.Exception(ClassName, $"Failed to get thumbnail for {path} on first try", e);
175+
Log.Exception(ClassName, $"Failed to get thumbnail for {path} on second try", e2);
176176

177177
ImageSource image = ImageCache[Constant.MissingImgIcon, false];
178178
ImageCache[path, false] = image;

0 commit comments

Comments
 (0)