国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python實現(xiàn)_的系統(tǒng)實用log類實例

2019-11-02 14:32:05
字體:
供稿:網(wǎng)友

   本文實例講述了python實現(xiàn)的系統(tǒng)實用log類。分享給大家供大家參考。具體如下:

  每個系統(tǒng)都必不可少會需要一個log類,方便了解系統(tǒng)的運行狀況和排錯,python本身已經(jīng)提供了一個logger了,很強大,只要稍微封裝一下就可以放到自己的系統(tǒng)了,下面是我自己的log類

  文件名:logger.py

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 """This module takes care of the logging logger helps in creating a logging system for the application Logging is initialised by function LoggerInit. """ import logging import os import sys class logger(object): """Class provides methods to perform logging.""" m_logger = None def __init__(self, opts, logfile): """Set the default logging pat
動漫資源[www.aikan.tv/xzhtml/4/]
h.""" 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 the 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.CR
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 光山县| 同江市| 淅川县| 高密市| 延庆县| 阿克陶县| 莒南县| 东乌珠穆沁旗| 华容县| 黑龙江省| 郁南县| 富锦市| 桓仁| 滦平县| 抚宁县| 剑河县| 眉山市| 工布江达县| 靖远县| 博客| 湘潭县| 安阳市| 白玉县| 车险| 余姚市| 新兴县| 钟山县| 昌宁县| 天柱县| 湖南省| 德格县| 博兴县| 福建省| 奉化市| 高台县| 新密市| 丹江口市| 肇源县| 高密市| 开原市| 永安市|