From b966be30215f82296483cbe5491332f23141c318 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 31 May 2021 19:27:36 +0200 Subject: [PATCH] Log suppressed errors to log file. --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index 61832de..8ce569a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -149,6 +149,7 @@ int main(int argc, char *argv[]) { if (opts.ignore_archive_errors && e.code == 1) { // File is probably not an EPUB. + LOG(lg, log::sev::info) << e.what(); return EXIT_SUCCESS; }