This commit is contained in:
virusdefender
2015-11-28 20:32:49 +08:00
parent 9cd52115fc
commit d8966ed48a
22 changed files with 117 additions and 189 deletions

8
judge/logger.py Normal file
View File

@@ -0,0 +1,8 @@
# coding=utf-8
import logging
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s [%(threadName)s:%(thread)d] [%(name)s:%(lineno)d] [%(module)s:%(funcName)s] [%(levelname)s]- %(message)s',
filename='log/judge.log')
logger = logging