Atlas-Install/source/log_error.py

4 lines
134 B
Python

import traceback
def log_error(self, exception):
with open("./error.log", "a") as f: f.write(f"---\n{traceback.format_exc()}\n")