14 lines
263 B
Python
14 lines
263 B
Python
from datetime import datetime
|
|
|
|
# 定数
|
|
LOG_LEVEL = {"d": 'Debug'}
|
|
MODE_TYPE = {
|
|
'n': 'normal',
|
|
'd': 'debug',
|
|
}
|
|
|
|
|
|
def debug_log(log, log_info, mode):
|
|
if MODE_TYPE['d'] == mode:
|
|
print(f'{str(datetime.now())} {log_info} {LOG_LEVEL["d"]} {log}')
|