-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
87 lines (79 loc) · 2.42 KB
/
settings.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# -*-encoding: utf-8 -*-
import os
import socket
import logging.config
from datetime import datetime
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DEFAULT_SERVER_PORT = 7700
hostname = socket.gethostname()
if hostname.startswith('ali'):
env = 'stable'
debug = False
cache = True
else:
env = 'dev'
debug = True
cache = True
LOG_FILE_PATH = '/data/logs/aifilter/%s-index.log' % datetime.now().strftime('%Y-%m-%d')
# Logging conifg
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'formatters': {
'standard': {
'format': '%(asctime)s [%(levelname)s] %(message)s'
},
'precise': {
'format': '%(levelname)s \x1b[6;30;42m%(asctime)s\x1b[0m %(name)s \x1b[1;32;40m%(message)s\x1b[0m'
},
},
'handlers': {
'default': {
'level': 'INFO',
'class': 'logging.handlers.RotatingFileHandler',
'filename': LOG_FILE_PATH, # 日志输出文件
'maxBytes': 1024 * 1024 * 500, # 文件大小
'backupCount': 5, # 备份份数
'formatter': 'standard', # 使用哪种formatters日志格式
},
'error': {
'level': 'ERROR',
'class': 'logging.handlers.RotatingFileHandler',
'filename': LOG_FILE_PATH,
'maxBytes': 1024 * 1024 * 500,
'backupCount': 5,
'formatter': 'standard',
},
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'precise'
},
'request_handler': {
'level': 'DEBUG',
'class': 'logging.handlers.RotatingFileHandler',
'filename': LOG_FILE_PATH,
'maxBytes': 1024 * 1024 * 500,
'backupCount': 5,
'formatter': 'standard',
},
'scprits_handler': {
'level': 'DEBUG',
'class': 'logging.handlers.RotatingFileHandler',
'filename': LOG_FILE_PATH,
'maxBytes': 1024 * 1024 * 500,
'backupCount': 5,
'formatter': 'standard',
}
},
'loggers': {
'rpc': {
'handlers': ['default', 'console'],
'level': 'DEBUG',
'propagate': False
}
}
}
logging.config.dictConfig(LOGGING)
logger = logging.getLogger('rpc')