#Author Kang
import logging
logging.basicConfig(filename="app.log",level=logging.WARNING,format='%(asctime)s %(levelname)s: %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p')
logging.info("app info test")
logging.warning("app warning message")
logging.error("app error message")
#filename:app.log文件,用于保存日志輸出信息
#level:日志級別
#format:日志輸出的格式
結(jié)果:app.log文件信息
02/18/2019 06:27:10 PM WARNING: app warning message
02/18/2019 06:27:10 PM ERROR: app error message
import logging
from logging.handlers import TimedRotatingFileHandler
class Log():
def __init__(self):
self.logger = logging.getLogger('Operation Mail')
self.logger.setLevel(logging.INFO)
ch = TimedRotatingFileHandler("access.log", when='D', encoding="utf-8")
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
self.logger.addHandler(ch)
def debug(self,log_msg):
self.logger.debug(log_msg)
def info(self,log_msg):
self.logger.info(log_msg)
def error(self,log_msg):
self.logger.error(log_msg)
def cirtical(self,log_msg):
self.logger.critical(log_msg)
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。