Browse Source

Log exception

Bond_009 5 years ago
parent
commit
10afa4509d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Emby.Server.Implementations/Data/SqliteItemRepository.cs

+ 2 - 2
Emby.Server.Implementations/Data/SqliteItemRepository.cs

@@ -1995,9 +1995,9 @@ namespace Emby.Server.Implementations.Data
                     {
                     {
                         chapter.ImageTag = ImageProcessor.GetImageCacheTag(item, chapter);
                         chapter.ImageTag = ImageProcessor.GetImageCacheTag(item, chapter);
                     }
                     }
-                    catch
+                    catch (Exception ex)
                     {
                     {
-
+                        Logger.LogError(ex, "Failed to create image cache tag.");
                     }
                     }
                 }
                 }
             }
             }