31 lines
963 B
Plaintext
31 lines
963 B
Plaintext
{
|
|
'server': {
|
|
'level': 'DEBUG',
|
|
// option: CRITICAL ERROR WARNING INFO DEBUG
|
|
'fmt': '',
|
|
// format
|
|
'date_fmt': '%Y-%m-%d %H-%M-%S',
|
|
// format at https://docs.python.org/zh-cn/3.8/library/time.html#time.strftime
|
|
},
|
|
'client': {
|
|
'level': 'DEBUG',
|
|
// option: CRITICAL ERROR WARNING INFO DEBUG
|
|
'date_fmt': '%Y-%m-%d %H-%M-%S',
|
|
// format at https://docs.python.org/zh-cn/3.8/library/time.html#time.strftime
|
|
},
|
|
'file': {
|
|
'level': 'DEBUG',
|
|
// option: CRITICAL ERROR WARNING INFO DEBUG
|
|
'date_fmt': '%Y-%m-%d %H-%M-%S',
|
|
// format at https://docs.python.org/zh-cn/3.8/library/time.html#time.strftime
|
|
'filename': {
|
|
'main': '{date} SR.log',
|
|
// {date} -> date
|
|
'formats': {
|
|
'{date}': '%Y-%m-%d %H-%M-%S',
|
|
// format at https://docs.python.org/zh-cn/3.8/library/time.html#time.strftime
|
|
// can and more {xx} by adding more obj EZ
|
|
}
|
|
}
|
|
}
|
|
} |