Improve error reporting

This commit is contained in:
dotnet 2023-10-13 13:14:18 -04:00
parent 27f6bfaf2e
commit ee7f0bb527
1 changed files with 1 additions and 0 deletions

View File

@ -277,6 +277,7 @@ def main():
# If error, print error and continue # If error, print error and continue
except Exception as e: except Exception as e:
print("\n\n" + cfg_name + ": Error: ", file=log_file)
traceback.print_exc(file=log_file) traceback.print_exc(file=log_file)
continue continue