代码拉取完成,页面将自动刷新
同步操作将从 fangzheng/python-dbhelper 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
@version : v1.0
@author : fangzheng
@contact : zfang@hillinsight.com
@software : PyCharm
@filename : logger.py
@create time: 2019/3/26 22:49
@describe :
@use example: python logger.py [param1 param2]
-------------------------------------------------
"""
import logging
import os
import sys
class Logger():
def __init__(self, level="debug",
name=os.path.split(os.path.splitext(sys.argv[0])[0])[-1],
log_name=None,
log_path=os.path.join(os.path.dirname(os.path.abspath(__file__)), "log"),
use_console=True):
'''
set_level: 设置日志的打印级别,默认为DEBUG
name: 日志中将会打印的name,默认为运行程序的name
log_name: 日志文件的名字,默认为当前时间(年-月-日.log)
log_path: 日志文件夹的路径,默认为logger.py同级目录中的log文件夹
use_console: 是否在控制台打印,默认为True
'''
self.logger = logging.getLogger(name)
if level.lower() == "critical":
self.logger.setLevel(logging.CRITICAL)
elif level.lower() == "error":
self.logger.setLevel(logging.ERROR)
elif level.lower() == "warning":
self.logger.setLevel(logging.WARNING)
elif level.lower() == "info":
self.logger.setLevel(logging.INFO)
elif level.lower() == "debug":
self.logger.setLevel(logging.DEBUG)
else:
self.logger.setLevel(logging.NOTSET)
if not os.path.exists(log_path):
os.makedirs(log_path)
if log_name:
log_file_path = os.path.join(log_path, log_name)
log_handler = logging.FileHandler(log_file_path+".log")
log_handler.setFormatter(
logging.Formatter("%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s"))
self.logger.addHandler(log_handler)
if use_console:
console_handler = logging.StreamHandler()
console_handler.setFormatter(logging.Formatter("%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s"))
self.logger.addHandler(console_handler)
def addHandler(self, hdlr):
self.logger.addHandler(hdlr)
def removeHandler(self, hdlr):
self.logger.removeHandler(hdlr)
def critical(self, msg, *args, **kwargs):
self.logger.critical(msg, *args, **kwargs)
def warning(self, msg, *args, **kwargs):
self.logger.warning(msg, *args, **kwargs)
def error(self, msg, *args, **kwargs):
self.logger.error(msg, *args, **kwargs)
def info(self, msg, *args, **kwargs):
self.logger.info(msg, *args, **kwargs)
def debug(self, msg, *args, **kwargs):
self.logger.debug(msg, *args, **kwargs)
def log(self, level, msg, *args, **kwargs):
self.logger.log(level, msg, *args, **kwargs)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。