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

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

  每个系统都必不可少会需要一个log类,方便了解系统的运行状况和排错,python本身已经提供了一个logger了,很强大,只要稍微封装一下就可以放到自己的系统了,下面是我自己的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 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 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.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程序设计有所帮助。

时间: 2024-10-27 06:05:30

python实现的系统实用log类实例的相关文章

python通过定义一个类实例作为ftp回调方法

  本文实例讲述了python通过定义一个类实例作为ftp回调方法.分享给大家供大家参考.具体实现方法如下: ? 1 2 3 4 5 6 7 8 9 10 11 12 class Writer: def __init__(self, file): self.f = open(file, "w") def __call__(self, data): self.f.write(data) self.f.write('n') print data FILENAME = "AutoI

python命令行参数解析OptionParser类用法实例_python

本文实例讲述了python命令行参数解析OptionParser类的用法,分享给大家供大家参考. 具体代码如下: from optparse import OptionParser parser = OptionParser(usage="usage:%prog [optinos] filepath") parser.add_option("-t", "--timeout", action = "store", type =

Python的类实例属性访问规则探讨_python

一般来说,在Python中,类实例属性的访问规则算是比较直观的. 但是,仍然存在一些不是很直观的地方,特别是对C++和Java程序员来说,更是如此. 在这里,我们需要明白以下几个地方: 1.Python是一门动态语言,任何实体都可以动态地添加或删除属性. 2.一个类定义了一个作用域. 3.类实例也引入了一个作用域,这与相应类定义的作用域不同. 4.在类实例中查找属性的时候,首先在实例自己的作用域中查找,如果没有找到,则再在类定义的作用域中查找. 5.在对类实例属性进行赋值的时候,实际上会在类实例

Python 进阶_OOP 面向对象编程_类属性和方法

目录 目录 类属性 调用类属性 查看类属性 特殊的类属性 类方法 真构造器 __new__ 类属性 在理解类属性之前要先搞清楚 实例属性 和 函数属性 之间的区别: 1. 实例属性:指的是实例化类对象的属性,需要在类中使用 self 关键字来将其和实例化对象绑定的属性. 2. 函数属性:指的是定义在函数体内的属性,其可以是实例属性,也可以是类属性. 3. 类属性:是一个与实例无关的属性,比起实例属性而言,它更加的 静态,当定义在类方法中时,并不会因为方法调用的完毕而被回收.类属性,在类定义中直接

Python检测一个对象是否为字符串类的方法

  这篇文章主要介绍了Python检测一个对象是否为字符串类的方法,即检测是一个对象是否是字符串对象,本文还讲解了一个有趣的判断方法,需要的朋友可以参考下 目的 测试一个对象是否是字符串 方法 Python的字符串的基类是basestring,包括了str和unicode类型.一般可以采用以下方法: 代码如下: def isAString(anobj): return isinstance(anobj,basestring) 不过以上方法对于UserString类的实例,无能无力. 代码如下:

Pig系统分析(7) Pig实用工具类

Explain Explain是Pig提供的调试工具,使用explain可以输出Pig Lation的执行计划.值得一提的是,explain支持-dot选项,将执行计划以DOT格式输出, (DOT是一种图形描述语言,请参考http://zh.wikipedia.org/zh/DOT%E8%AF%AD%E8%A8%80) 代码实现详见org.apache.pig.impl.plan.DotPlanDumper,这部分实现为我们设计执行计划可视化提供了参考. 下图部分截取了使用Graphviz打开物

分享XP系统实用的五个技巧

分享XP系统实用的五个技巧   1.在记事本中自动记录文件的打开时间 在记事本中,我们可以记录每次打开某个文本文件的时间,方法为:在该文件的第一行输入".LOG"(注意:必须大写!),然后换行开始正文.这样在每次打开了该文件之后在关闭时会自动在文件后面添加当前打开该文本的时间. 2.快速浏览脱机网页 需要脱机浏览某个已经打开过的网页,传统的方式是按照在线打开的顺序一个链接一个链接地找到并打开这个网页.比较快的方式是将这个网页添加到收藏夹,以后在脱机方式下从收藏夹中浏览这个网页. 其实,

PHP实现多图片上传类实例

  这篇文章主要介绍了PHP实现多图片上传类实例,该类文件注释详细功能实用且具有一定的扩展性,需要的朋友可以参考下 本文所述为一个实用的PHP多图片文件上传类,其支持gif.jpg.jpeg.pjpeg.png格式的多图片上传功能,类中还可限制图片类型.上传图片的大小.设置上传目录.一些提交判断等功能.此外该类并不局限于图片的上传,也可以上传TXT/RAR等文件类型,只是需要对代码进行一下修改,感兴趣的读者可以自己尝试一下. php多图片上传类完整功能代码如下: class more_file_

c++ static 类实例 是否调用折构函数?

问题描述 c++ static 类实例 是否调用折构函数? 比如说static MyClass myclass; myclass的折构函数会不会被调用? 解决方案 会调用,但是可能不会再控制台输出 在VC++中编写如下代码: #include <iostream> using namespace std; class A { public: ~A() { cout << "~A" << endl; } }; static A a; int main(