mirror of
https://github.com/illian64/llm-translate.git
synced 2026-07-09 17:28:38 +00:00
9 lines
176 B
Python
9 lines
176 B
Python
import logging
|
|
|
|
|
|
def logger():
|
|
return logging.getLogger('uvicorn')
|
|
|
|
|
|
def log_exception(message: str, e: Exception) -> None:
|
|
logger().exception(message + ": " + str(e))
|