autotest_platform/app/log.py

21 lines
533 B
Python
Raw Normal View History

2018-07-30 16:58:01 +08:00
import platform
import logzero
from app import config
class log :
def __init__(self) :
self.logfile = config.logPath + 'flask.log'
logzero.logfile(self.logfile, maxBytes = 1e6, backupCount = 3)
import logging
formatter = logging.Formatter('%(asctime)-15s - [%(filename)s: %(lineno)s] -%(levelname)s: %(message)s');
logzero.formatter(formatter)
logzero.loglevel(logging.ERROR)
self.logger = logzero.logger
if __name__ == '__main__':
input("You can not run main!")