diff --git a/API/Schema/Jobs/DownloadSingleChapterJob.cs b/API/Schema/Jobs/DownloadSingleChapterJob.cs index 7d2cc03..e4ff47c 100644 --- a/API/Schema/Jobs/DownloadSingleChapterJob.cs +++ b/API/Schema/Jobs/DownloadSingleChapterJob.cs @@ -153,7 +153,6 @@ public class DownloadSingleChapterJob : Job } catch (Exception e) { - Log.Error(e); if (e is UnknownImageFormatException or NotSupportedException) { //If the Image-Format is not processable by ImageSharp, we can't modify it. @@ -162,6 +161,10 @@ public class DownloadSingleChapterJob : Job { Log.Debug($"Unable to process {imagePath}: Invalid Content"); } + else + { + Log.Error(e); + } } }