Files

8 lines
160 B
Python
Raw Permalink Normal View History

2025-02-16 22:32:32 +08:00
# ui/helpers.py
# -*- coding: utf-8 -*-
import logging
import traceback
def log_error(message: str):
logging.error(f"{message}\n{traceback.format_exc()}")