-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathlog_utils.py
61 lines (55 loc) · 2.09 KB
/
log_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 17-9-18 下午4:11
# @Author : MaybeShewill-CV
# @Site : https://github.com/MaybeShewill-CV/CRNN_Tensorflow
# @File : log_utils.py
# @IDE: PyCharm Community Edition
"""
Set the log config
"""
import logging
from logging import handlers
import os
import os.path as ops
def init_logger(level=logging.DEBUG, when="D", backup=7,
_format="%(levelname)s: %(asctime)s: %(filename)s:%(lineno)d * %(thread)d %(message)s",
datefmt="%m-%d %H:%M:%S"):
"""
init_log - initialize log module
:param level: msg above the level will be displayed DEBUG < INFO < WARNING < ERROR < CRITICAL
the default value is logging.INFO
:param when: how to split the log file by time interval
'S' : Seconds
'M' : Minutes
'H' : Hours
'D' : Days
'W' : Week day
default value: 'D'
:param backup: how many backup file to keep default value: 7
:param _format: format of the log default format:
%(levelname)s: %(asctime)s: %(filename)s:%(lineno)d * %(thread)d %(message)s
INFO: 12-09 18:02:42: log.py:40 * 139814749787872 HELLO WORLD
:param datefmt:
:return:
"""
formatter = logging.Formatter(_format, datefmt)
logger = logging.getLogger()
logger.setLevel(level)
log_path = ops.join(os.getcwd(), 'logs/shadownet.log')
_dir = os.path.dirname(log_path)
if not os.path.isdir(_dir):
os.makedirs(_dir)
handler = handlers.TimedRotatingFileHandler(log_path, when=when, backupCount=backup)
handler.setLevel(level)
handler.setFormatter(formatter)
logger.addHandler(handler)
handler = handlers.TimedRotatingFileHandler(log_path + ".log.wf", when=when, backupCount=backup)
handler.setLevel(logging.WARNING)
handler.setFormatter(formatter)
logger.addHandler(handler)
handler = logging.StreamHandler()
handler.setLevel(level)
handler.setFormatter(formatter)
logger.addHandler(handler)
return logger