Преглед на файлове

Show full traceback in get_sd_model()

to reveal if an error is caused by an extension
linkoid преди 2 години
родител
ревизия
1f0fdede17
променени са 2 файла, в които са добавени 7 реда и са изтрити 3 реда
  1. 6 2
      modules/errors.py
  2. 1 1
      modules/sd_models.py

+ 6 - 2
modules/errors.py

@@ -12,9 +12,13 @@ def print_error_explanation(message):
     print('=' * max_len, file=sys.stderr)
     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(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)
     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:
     if "copying a param with shape torch.Size([640, 1024]) from checkpoint, the shape in current model is torch.Size([640, 768])" in message:

+ 1 - 1
modules/sd_models.py

@@ -424,7 +424,7 @@ class SdModelData:
                 try:
                 try:
                     load_model()
                     load_model()
                 except Exception as e:
                 except Exception as e:
-                    errors.display(e, "loading stable diffusion model")
+                    errors.display(e, "loading stable diffusion model", full_traceback=True)
                     print("", file=sys.stderr)
                     print("", file=sys.stderr)
                     print("Stable diffusion model failed to load", file=sys.stderr)
                     print("Stable diffusion model failed to load", file=sys.stderr)
                     self.sd_model = None
                     self.sd_model = None