1. Simply print the log to the screen
Import logginglogging.debug ('This isdebug message') logging.info (' This is info message ' ) logging.warning ('This waswarning message') is warning message
By default, logging prints the log to the screen with a log level of warning;
Log level size relationships are: CRITICAL > ERROR > WARNING > INFO > DEBUG > NOTSET, and of course you can define the log level yourself.
2. Configure the output format and mode of the log by Logging.basicconfig function
ImportLogginglogging.basicconfig ( level=logging. DEBUG, Format='% (asctime) s% (filename) s[line:% (lineno) d]% (levelname) s% (message) s', Datefmt='%a,%d%b%Y%h:%m:%s', filename='Myapp.log', FileMode='W') Logging.debug ('This is debug message') Logging.info ('This is info message') logging.warning ('This is warning message') ./The contents of the Myapp.log file are: Sun,21:48:54 Demo2.py[line:11] DEBUG this isDebug Messagesun,21:48:54 Demo2.py[line:12] INFO this isInfo Messagesun,21:48:54 Demo2.py[line:13] WARNING this isWarning message
Parameters of the Logging.basicconfig function:
FileName: Specify the log file name
FileMode: Same as file function, specify open mode of log file, ' W ' or ' a '
Format: Specifies the formats and contents of the output, format can output a lot of useful information, as in the example above:
% (Levelno) S: Print the value of the log level
% (levelname) S: Print log level name
% (pathname) s: Prints the path of the currently executing program, which is actually sys.argv[0]
% (filename) s: Prints the current name of the executing program
% (funcName) s: Print the current function of the log
% (Lineno) d: Print the current line number of the log
% (asctime) s: Time to print logs
% (thread) d: Print thread ID
% (threadname) s: Print thread name
% (process) d: Print process ID
% (message) s: Print log information
DATEFMT: Specify time format, same as Time.strftime ()
Level: Sets the log levels by default to logging. WARNING
Stream: Specifies the output stream that will log, can specify output to Sys.stderr,sys.stdout or file, default output to Sys.stderr, stream is ignored when stream and filename are specified simultaneously
3. Output logs to both file and screen at the same time
ImportLogginglogging.basicconfig ( level=logging. DEBUG, Format='% (asctime) s% (filename) s[line:% (lineno) d]% (levelname) s% (message) s', Datefmt='%a,%d%b%Y%h:%m:%s', filename='Myapp.log', FileMode='W')##################################################################################################define a Streamhandler, print info-level or higher log information to a standard error, and add it to the current log processing object #console =logging. Streamhandler () console.setlevel (logging.info) Formatter= Logging. Formatter ('% (name) -12s:% (levelname) -8s% (message) s') Console.setformatter (formatter) Logging.getlogger ("'). AddHandler (console)#################################################################################################Logging.debug ('This is debug message') Logging.info ('This is info message') logging.warning ('This is warning message') on-screen printing: Root:info this isInfo messageroot:warning This iswarning message./The contents of the Myapp.log file are: Sun,21:48:54 Demo2.py[line:11] DEBUG this isDebug Messagesun,21:48:54 Demo2.py[line:12] INFO this isInfo Messagesun,21:48:54 Demo2.py[line:13] WARNING this isWarning message
4.logging Log Rollback
ImportLogging fromLogging.handlersImportRotatingfilehandler##################################################################################################define a Rotatingfilehandler, backup up to 5 log files, maximum 10M per log fileRthandler = Rotatingfilehandler ('Myapp.log', maxbytes=10*1024*1024,backupcount=5) Rthandler.setlevel (logging.info) Formatter= Logging. Formatter ('% (name) -12s:% (levelname) -8s% (message) s') Rthandler.setformatter (formatter) Logging.getlogger ("'). AddHandler (Rthandler)################################################################################################
As can be seen from the above example and in this example, logging has a main object of log processing, and other processing methods are added through AddHandler.
Several handle methods of logging are as follows:
Logging. Streamhandler: Log output to stream, can be sys.stderr, sys.stdout, or file logging. Filehandler: Log output to File
Log rollback method, using Rotatingfilehandler and Timedrotatingfilehandler in practice Logging.handlers.BaseRotatingHandler Logging.handlers.RotatingFileHandler Logging.handlers.TimedRotatingFileHandler
Logging.handlers.SocketHandler: Remote output log to TCP/IP sockets
Logging.handlers.DatagramHandler: Remote output log to UDP sockets
Logging.handlers.SMTPHandler: Remote output log to e-mail address
Logging.handlers.SysLogHandler: Log Output to Syslog
Logging.handlers.NTEventLogHandler: Remote output log to Windows NT/2000/XP event log
Logging.handlers.MemoryHandler: Log output to in-memory development buffer
Logging.handlers.HTTPHandler: Remote output to HTTP server via "GET" or "POST"
Because Streamhandler and filehandler are common log processing methods, they are included directly in the logging module, while others are included in the Logging.handlers module.
Please refer to the python2.5 manual for the use of the other processing methods described above.
5. Configuring logs via the Logging.config module
#logger.conf ###############################################[Loggers]keys=Root,example01,example02 [Logger_root]level=debughandlers=hand01,hand02 [Logger_example01]handlers=Hand01,hand02qualname=example01propagate=0 [Logger_example02]handlers=Hand01,hand03qualname=example02propagate=0###############################################[Handlers]keys=hand01,hand02,hand03 [HANDLER_HAND01]class=Streamhandlerlevel=Infoformatter=Form02args=(Sys.stderr,) [HANDLER_HAND02]class=Filehandlerlevel=Debugformatter=Form01args=('Myapp.log','a') [HANDLER_HAND03]class=handlers. Rotatingfilehandlerlevel=Infoformatter=Form02args=('Myapp.log','a', 10*1024*1024, 5) ###############################################[Formatters]keys=form01,form02 [Formatter_form01]format=% (asctime) s% (filename) s[line:% (lineno) d]% (levelname) s%(message) sdatefmt=%a,%d%b%Y%h:%m:%S [Formatter_form02]format=% (name) -12s:% (levelname) -8s%(message) sdatefmt=
ImportLoggingImportLogging.configlogging.config.fileConfig ("logger.conf") Logger= Logging.getlogger ("example01") Logger.debug ('This is debug message') Logger.info ('This is info message') logger.warning ('This is warning message')
ImportLoggingImportLogging.configlogging.config.fileConfig ("logger.conf") Logger= Logging.getlogger ("EXAMPLE02") Logger.debug ('This is debug message') Logger.info ('This is info message') logger.warning ('This is warning message')
6.logging is thread-safe
from:http://blog.csdn.net/yatere/article/details/6655445
Python Module Learning Logging