From 3e633713d9737c7b0f19e9bc06cf661eb0a08b32 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 23 May 2021 20:50:42 +0530 Subject: [PATCH] Report afilure to gather metadata for dirtied books --- src/calibre/db/cache.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/db/cache.py b/src/calibre/db/cache.py index 27fe673254..958da81fa1 100644 --- a/src/calibre/db/cache.py +++ b/src/calibre/db/cache.py @@ -1273,7 +1273,8 @@ class Cache(object): except: # This almost certainly means that the book has been deleted while # the backup operation sat in the queue. - pass + import traceback + traceback.print_exc() return mi, sequence @write_api