8 lines
124 B
Python
8 lines
124 B
Python
|
import logging
|
||
|
|
||
|
error_log = logging.getLogger("judge.errors")
|
||
|
|
||
|
|
||
|
def log_exception(msg):
|
||
|
error_log.exception(msg)
|