mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-11 10:10:35 +01:00
add missing exception information to error log
This commit is contained in:
@@ -79,9 +79,9 @@ public class ComicBookInfoProvider : IComicProvider
|
||||
return SaveMetadata(comicBookMetadata);
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError("failed to load ComicBookInfo metadata: {Path}", info.Path);
|
||||
_logger.LogError(ex, "failed to load ComicBookInfo metadata: {Path}", info.Path);
|
||||
return new MetadataResult<Book> { HasMetadata = false };
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user