aboutsummaryrefslogtreecommitdiff
path: root/modules/errors.py
diff options
context:
space:
mode:
authorlinkoid <36754150+linkoid@users.noreply.github.com>2023-05-26 15:15:59 -0400
committerlinkoid <36754150+linkoid@users.noreply.github.com>2023-05-26 15:25:31 -0400
commit1f0fdede176989f151da6b97bd9a140b7f0af6e5 (patch)
treee9fbaef018d301f442d8c9973261a67889939842 /modules/errors.py
parent3829afec365b748e330da33b00a0e363f8c8ab71 (diff)
Show full traceback in get_sd_model()
to reveal if an error is caused by an extension
Diffstat (limited to 'modules/errors.py')
-rw-r--r--modules/errors.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/errors.py b/modules/errors.py
index f6b80dbb..da4694f8 100644
--- a/modules/errors.py
+++ b/modules/errors.py
@@ -12,9 +12,13 @@ def print_error_explanation(message):
print('=' * max_len, file=sys.stderr)
-def display(e: Exception, task):
+def display(e: Exception, task, *, full_traceback=False):
print(f"{task or 'error'}: {type(e).__name__}", file=sys.stderr)
- print(traceback.format_exc(), file=sys.stderr)
+ te = traceback.TracebackException.from_exception(e)
+ if full_traceback:
+ # include frames leading up to the try-catch block
+ te.stack = traceback.StackSummary(traceback.extract_stack()[:-2] + te.stack)
+ print(*te.format(), sep="", file=sys.stderr)
message = str(e)
if "copying a param with shape torch.Size([640, 1024]) from checkpoint, the shape in current model is torch.Size([640, 768])" in message: