• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

python实现的系统实用log类实例

python 搞代码 4年前 (2022-01-09) 39次浏览 已收录 0个评论

本文实例讲述了python实现的系统实用log类。分享给大家供大家参考。具体如下:

每个系统都必不可少会需要一个log类,方便了解系统的运行状况和排错,python本身已经提供了一个logger了,很强大,只要稍微封装一下就可以放到自己的系统了,下面是我自己的log类

文件名:logger.py

"""This module takes care of the logginglogger helps in creating a logging system for the application Logging is initialised by function LoggerInit."""import loggingimport osimport sysclass logger(object):  """Class provides methods to perform logging."""  m_logger = None  def __init__(self, opts, logfile):    """Set the default logging path."""    self.opts = opts    self.myname = 'dxscs'    self.logdir = '.'    self.logfile = logfile    self.filename = os.path.join(self.logdir, self.logfile)  def loginit(self):    """Calls function LoggerInit to start initialising the logging system."""    logdir = os.path.normpath(os.path.expanduser(self.logdir))    self.logfilename = os.path.normpath(os.path.expanduser(self.filename))    if not os.path.isdir(logdir):      try:        os.mkdir(logdir)      except OSError, e:        msg = ('(%s)'%e)        print msg        sys.exit(1)    self.logger_init(self.myname)  def logger_init(self, loggername):    """Initialise the logging system.    This includes logging to console and a file. By default, console prints    messages of level WARN and above and file prints level INFO and above.    In DEBUG mode (-D command line option) prints messages of level DEBUG    and above to both console and file.    Args:     loggername: String - Name of the application printed along with t<b style="color:transparent">本文来源gao@!dai!ma.com搞$$代^@码!网!</b>he log     message.    """    fileformat = '[%(asctime)s] %(name)s: [%(filename)s: %(lineno)d]: %(levelname)-8s: %(message)s'    logger.m_logger = logging.getLogger(loggername)    logger.m_logger.setLevel(logging.INFO)    self.console = logging.StreamHandler()    self.console.setLevel(logging.CRITICAL)    consformat = logging.Formatter(fileformat)    self.console.setFormatter(consformat)    self.filelog = logging.FileHandler(filename=self.logfilename, mode='w+')    self.filelog.setLevel(logging.INFO)    self.filelog.setFormatter(consformat)    logger.m_logger.addHandler(self.filelog)    logger.m_logger.addHandler(self.console)    if self.opts['debug'] == True:      self.console.setLevel(logging.DEBUG)      self.filelog.setLevel(logging.DEBUG)      logger.m_logger.setLevel(logging.DEBUG)    if not self.opts['nofork']:      self.console.setLevel(logging.WARN)  def logstop(self):    """Shutdown logging process."""    logging.shutdown()#test    if __name__ == '__main__':  #debug mode & not in daemon  opts = {'debug':True,'nofork':True}  log = logger(opts, 'dxscs_source.log')  log.loginit()  log.m_logger.info('hello,world')

执行结果:

终端和文件中都显示有:[2012-09-06 16:56:01,498] dxscs: [logger.py: 88]: INFO : hello,world

如果只需要显示在文件中可以将debug和nofork选项都置为false

希望本文所述对大家的Python程序设计有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:python实现的系统实用log类实例
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址