fix log
Showing
3 changed files
with
7 additions
and
1 deletions
This diff is collapsed.
Click to expand it.
... | @@ -38,7 +38,7 @@ class GenericExceptionMixin: | ... | @@ -38,7 +38,7 @@ class GenericExceptionMixin: |
38 | class LoggerMixin: | 38 | class LoggerMixin: |
39 | running_log = logging.getLogger('running') | 39 | running_log = logging.getLogger('running') |
40 | exception_log = logging.getLogger('exception') | 40 | exception_log = logging.getLogger('exception') |
41 | cronjob_log = logging.getLogger('cronjob') | 41 | online_log = logging.getLogger('online') |
42 | folder_log = logging.getLogger('folder') | 42 | folder_log = logging.getLogger('folder') |
43 | bs_log = logging.getLogger('bs') | 43 | bs_log = logging.getLogger('bs') |
44 | license_log = logging.getLogger('license') | 44 | license_log = logging.getLogger('license') | ... | ... |
1 | [loggers] | 1 | [loggers] |
2 | ; online --> 线上OCR日志:ocr_process.py | ||
3 | ; folder --> 线下OCR日志:folder_ocr_process.py | ||
4 | ; bs --> 线上流水识别结果日志,用于生成每日申请号-版式报表:bs_statistics.py | ||
5 | ; license --> 线上证件识别结果日志,用于偶尔生成结果报表:license_statistics.py | ||
6 | ; idcard --> 线上身份证识别结果日志,用于生成每日、每月身份证报表:idcard_daily.py、idcard_monthly.py | ||
7 | ; compare --> celery compare日志 | ||
2 | keys=root, running, exception, online, folder, bs, license, idcard, compare, django.db.backends | 8 | keys=root, running, exception, online, folder, bs, license, idcard, compare, django.db.backends |
3 | 9 | ||
4 | [handlers] | 10 | [handlers] | ... | ... |
-
Please register or sign in to post a comment