vQc%@scdZddlZddlZddlZddlZddlZddlZddlZddddddd d d d d ddddddddddddddddddd d!d"d#d$d%d&d'g%Zyddl Z Wne k re Z nXyddl Z ddl Z Wne k r.e Z nXd(Zd)Zd*Zd+ZyeeZWnek rneZnXeed,rd-ejed.fZn3ed.jd/d0gkred. d1ZneZejjeZd2Zeed3rd4ZnejZd5Z d5Z!d5Z"d5Z#d6Z$e$Z%d7Z&d8Z'e'Z(d9Z)d:Z*d;Z+i de$6de&6de'6d e)6de*6de+6e$d6e&d6e'd6e'd6e)d 6e*d6e+d6Z,d<Z-d=Z.d>Z/e re j0Z1ne Z1d?Z2d@Z3de4fdAYZ5dBZ6d e4fdCYZ7e7Z8de4fdDYZ9d e4fdEYZ:dFe4fdGYZ;ej<Z=gZ>dHZ?dIZ@d e;fdJYZAdeAfdKYZBd eBfdLYZCdMe4fdNYZDe aEdOZFdPZGdQe4fdRYZHde;fdSYZIdTeIfdUYZJeIaEde4fdVYZKeJe'ZLeLeI_LeHeIjLeI_MdWZNdXZOe dYZPdZZQeQZRd[ZSd\ZTd]ZUeUZVd^ZWd_ZXd`ZYdaZZe>dbZ[ddl\Z\e\j]e[deAfdcYZ^e a_e e ddZ`deZadS(fs Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2012 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! iNt BASIC_FORMATtBufferingFormattertCRITICALtDEBUGtERRORtFATALt FileHandlertFiltert FormattertHandlertINFOt LogRecordtLoggert LoggerAdaptertNOTSETt NullHandlert StreamHandlertWARNtWARNINGt addLevelNamet basicConfigtcaptureWarningstcriticaltdebugtdisableterrort exceptiontfatalt getLevelNamet getLoggertgetLoggerClasstinfotlogt makeLogRecordtsetLoggerClasstwarntwarnings&Vinay Sajip t productions0.5.1.2s07 February 2010tfrozenslogging%s__init__%sis.pycs.pyos.pycCs)y tWntjdjjSXdS(s5Return the frame object for the caller's stack frame.iN(t Exceptiontsystexc_infottb_frametf_back(((s&/sys/lib/python2.7/logging/__init__.pyt currentframeJs t _getframecCs tjdS(Ni(R(R-(((s&/sys/lib/python2.7/logging/__init__.pytQsii2i(iii icCstj|d|S(s Return the textual representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. Otherwise, the string "Level %s" % level is returned. sLevel %s(t _levelNamestget(tlevel((s&/sys/lib/python2.7/logging/__init__.pyRscCs.tz|t|<|t|(RDRJRKRURE(Ri((s&/sys/lib/python2.7/logging/__init__.pyt__str__3scCstst|j}nK|j}t|tscyt|j}Wqctk r_|j}qcXn|jr|||j}n|S(s Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. (t_unicodeR8RER5t basestringt UnicodeErrorRH(RiRE((s&/sys/lib/python2.7/logging/__init__.pyt getMessage7s   N(t__name__t __module__t__doc__RSRmRnRr(((s&/sys/lib/python2.7/logging/__init__.pyR s  @ c Cs5tdddddddd}|jj||S(s Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. tiN((R RSt__dict__tupdate(RGR;((s&/sys/lib/python2.7/logging/__init__.pyR!Ks!cBsMeZdZejZdddZddZdZ dZ dZ RS(s Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the default value of "%s(message)\n" is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted cCs(|r||_n d|_||_dS(s8 Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument (if omitted, you get the ISO8601 format). s %(message)sN(t_fmttdatefmt(RitfmtRz((s&/sys/lib/python2.7/logging/__init__.pyRms  cCsV|j|j}|r-tj||}n%tjd|}d||jf}|S(s Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, the ISO8601 format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. s%Y-%m-%d %H:%M:%Ss%s,%03d(t converterRWRCtstrftimeRX(RitrecordRzRktstt((s&/sys/lib/python2.7/logging/__init__.pyt formatTimes cCshtj}tj|d|d|dd||j}|j|ddkrd|d }n|S(s Format and return the specified exception information as a string. This default implementation just uses traceback.print_exception() iiiis N(t cStringIOtStringIOt tracebacktprint_exceptionRStgetvaluetclose(RiteitsioR((s&/sys/lib/python2.7/logging/__init__.pytformatExceptions %   cCs|jjddkS(sK Check if the format uses the creation time of the record. s %(asctime)i(Rytfind(Ri((s&/sys/lib/python2.7/logging/__init__.pytusesTimescCs|j|_|jr6|j||j|_n|j|j}|jrs|j ss|j |j|_ qsn|j r|ddkr|d}ny||j }Wqt k r||j j t jd}qXn|S(sz Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. is treplace(RrtmessageRRRztasctimeRyRwR)RTRRqtdecodeR(tgetfilesystemencoding(RiR~R((s&/sys/lib/python2.7/logging/__init__.pytformats       N( RsRtRuRCt localtimeR|RSRmRRRR(((s&/sys/lib/python2.7/logging/__init__.pyRZs(    cBs5eZdZddZdZdZdZRS(sB A formatter suitable for formatting a number of records. cCs|r||_n t|_dS(sm Optionally specify a formatter which will be used to format each individual record. N(tlinefmtt_defaultFormatter(RiR((s&/sys/lib/python2.7/logging/__init__.pyRms cCsdS(sE Return the header string for the specified records. Rv((Ritrecords((s&/sys/lib/python2.7/logging/__init__.pyt formatHeaderscCsdS(sE Return the footer string for the specified records. Rv((RiR((s&/sys/lib/python2.7/logging/__init__.pyt formatFooterscCsld}t|dkrh||j|}x$|D]}||jj|}q2W||j|}n|S(sQ Format the specified records and return the result as a string. Rvi(RFRRRR(RiRR;R~((s&/sys/lib/python2.7/logging/__init__.pyRs N(RsRtRuRSRmRRR(((s&/sys/lib/python2.7/logging/__init__.pyRs   cBs#eZdZddZdZRS(s Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. RvcCs||_t||_dS(s Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. N(RDRFtnlen(RiRD((s&/sys/lib/python2.7/logging/__init__.pyRm#s cCse|jdkrdS|j|jkr)dS|jj|jd|jdkrQdS|j|jdkS(s Determine if the specified record is to be logged. Is the specified record to be logged? Returns 0 for no, nonzero for yes. If deemed appropriate, the record may be modified in-place. iit.(RRDR(RiR~((s&/sys/lib/python2.7/logging/__init__.pytfilter.s$(RsRtRuRmR(((s&/sys/lib/python2.7/logging/__init__.pyRs  tFilterercBs2eZdZdZdZdZdZRS(s[ A base class for loggers and handlers which allows them to share common code. cCs g|_dS(sE Initialize the list of filters to be an empty list. N(tfilters(Ri((s&/sys/lib/python2.7/logging/__init__.pyRmBscCs&||jkr"|jj|ndS(s; Add the specified filter to this handler. N(Rtappend(RiR((s&/sys/lib/python2.7/logging/__init__.pyt addFilterHscCs&||jkr"|jj|ndS(s@ Remove the specified filter from this handler. N(Rtremove(RiR((s&/sys/lib/python2.7/logging/__init__.pyt removeFilterOscCs7d}x*|jD]}|j|sd}PqqW|S(s Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this and the record is then dropped. Returns a zero value if a record is to be dropped, else non-zero. ii(RR(RiR~R;tf((s&/sys/lib/python2.7/logging/__init__.pyRVs (RsRtRuRmRRR(((s&/sys/lib/python2.7/logging/__init__.pyR=s    cCs]tdk rYtdk rYtdk rYtz |tkrJtj|nWdtXndS(sD Remove a handler reference from the internal cleanup list. N(R2RSt _handlerListR3R(twr((s&/sys/lib/python2.7/logging/__init__.pyt_removeHandlerRefls  cCs3tztjtj|tWdtXdS(sL Add a handler to the internal cleanup list using a weak reference. N(R2RRtweakreftrefRR3(thandler((s&/sys/lib/python2.7/logging/__init__.pyt_addHandlerRef|scBseZdZedZdZdZeeeZdZ dZ dZ dZ dZ d Zd Zd Zd Zd ZdZRS(sq Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. cCsFtj|d|_t||_d|_t||jdS(sz Initializes the instance - basically setting the formatter to None and the filter list to empty. N( RRmRSt_nameR<R1t formatterRt createLock(RiR1((s&/sys/lib/python2.7/logging/__init__.pyRms     cCs|jS(N(R(Ri((s&/sys/lib/python2.7/logging/__init__.pytget_namescCsRtz<|jtkr&t|j=n||_|rB|t|(Ri((s&/sys/lib/python2.7/logging/__init__.pyR>s cCs|jr|jjndS(s. Release the I/O thread lock. N(RR?(Ri((s&/sys/lib/python2.7/logging/__init__.pyR?s cCst||_dS(s8 Set the logging level of this handler. N(R<R1(RiR1((s&/sys/lib/python2.7/logging/__init__.pytsetLevelscCs(|jr|j}nt}|j|S(s Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. (RRR(RiR~R{((s&/sys/lib/python2.7/logging/__init__.pyRs  cCstddS(s Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. s.emit must be implemented by Handler subclassesN(tNotImplementedError(RiR~((s&/sys/lib/python2.7/logging/__init__.pytemitscCsE|j|}|rA|jz|j|Wd|jXn|S(s< Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns whether the filter passed the record for emission. N(RR>RR?(RiR~R;((s&/sys/lib/python2.7/logging/__init__.pythandles  cCs ||_dS(s5 Set the formatter for this handler. N(R(RiR{((s&/sys/lib/python2.7/logging/__init__.pyt setFormatterscCsdS(s Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. N((Ri((s&/sys/lib/python2.7/logging/__init__.pytflushscCs?tz)|jr/|jtkr/t|j=nWdtXdS(s% Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. N(R2RRR3(Ri((s&/sys/lib/python2.7/logging/__init__.pyRs cCstrtjrtj}zdyLtj|d|d|ddtjtjjd|j|j fWnt k r}nXWd~XndS(sD Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. iiisLogged from file %s, line %s N( traiseExceptionsR(tstderrR)RRRStwriteRORUtIOError(RiR~R((s&/sys/lib/python2.7/logging/__init__.pyt handleErrors     (RsRtRuRRmRRtpropertyRDRR>R?RRRRRRRR(((s&/sys/lib/python2.7/logging/__init__.pyR s         cBs,eZdZddZdZdZRS(s A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. cCs2tj||dkr%tj}n||_dS(sb Initialize the handler. If stream is not specified, sys.stderr is used. N(R RmRSR(Rtstream(RiR((s&/sys/lib/python2.7/logging/__init__.pyRm1s   cCsK|jz/|jr8t|jdr8|jjnWd|jXdS(s% Flushes the stream. RN(R>RRgRR?(Ri((s&/sys/lib/python2.7/logging/__init__.pyR<s  cCs9y|j|}|j}d}ts;|j||nyt|trt|ddr|j|j }y|j||Wqt k r|j||j |j qXn|j||Wn+t k r|j||j dnX|j Wn-ttfk r!n|j|nXdS(s Emit a record. If a formatter is specified, it is used to format the record. The record is then written to the stream with a trailing newline. If exception information is present, it is formatted using traceback.print_exception and appended to the stream. If the stream has an 'encoding' attribute, it is used to determine how to do the output to the stream. s%s tencodingsUTF-8N(RRRoRR5tunicodetgetattrRSRRtUnicodeEncodeErrortencodeRqRtKeyboardInterruptt SystemExitR(RiR~RERtfstufs((s&/sys/lib/python2.7/logging/__init__.pyRGs,   $ N(RsRtRuRSRmRR(((s&/sys/lib/python2.7/logging/__init__.pyR*s cBs;eZdZddddZdZdZdZRS(sO A handler class which writes formatted logging records to disk files. taicCsutdkrd}ntjj||_||_||_|r[tj |d|_ nt j ||j dS(sO Open the specified file and use it as the stream for logging. N( tcodecsRSRLRMtabspatht baseFilenametmodeRR RmRRt_open(RiRORRtdelay((s&/sys/lib/python2.7/logging/__init__.pyRmus      cCsn|jzR|jr[|jt|jdrB|jjntj|d|_nWd|jXdS(s$ Closes the stream. RN(R>RRRgRRRSR?(Ri((s&/sys/lib/python2.7/logging/__init__.pyRs    cCsI|jdkr't|j|j}ntj|j|j|j}|S(sx Open the current base file with the (original) mode and encoding. Return the resulting stream. N(RRStopenRRR(RiR((s&/sys/lib/python2.7/logging/__init__.pyRscCs5|jdkr!|j|_ntj||dS(s Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. N(RRSRRR(RiR~((s&/sys/lib/python2.7/logging/__init__.pyRsN(RsRtRuRSRmRRR(((s&/sys/lib/python2.7/logging/__init__.pyRqs   t PlaceHoldercBs eZdZdZdZRS(s PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. cCsid|6|_dS(sY Initialize with the specified logger being a child of this placeholder. N(RSt loggerMap(Ritalogger((s&/sys/lib/python2.7/logging/__init__.pyRmscCs#||jkrd|j||tkr4t|ts4td|jq4n|adS(s Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() s(logger not derived from logging.Logger: N(R t issubclassR:Rst _loggerClass(tklass((s&/sys/lib/python2.7/logging/__init__.pyR"s  cCstS(sB Return the class to be used when instantiating a logger. (R(((s&/sys/lib/python2.7/logging/__init__.pyRstManagercBs;eZdZdZdZdZdZdZRS(st There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. cCs1||_d|_d|_i|_d|_dS(sT Initialize the manager with the root node of the logger hierarchy. iN(trootRtemittedNoHandlerWarningt loggerDictRSt loggerClass(Ritrootnode((s&/sys/lib/python2.7/logging/__init__.pyRms     cCsd}t|ts$tdnt|trE|jd}ntz||jkr|j|}t|tr|}|j pt |}||_ ||j|<|j |||j |qn8|j pt |}||_ ||j|<|j |WdtX|S(s Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. s'A logger name must be string or Unicodesutf-8N(RSR5RpR:RRR2RRRRtmanagert_fixupChildrent _fixupParentsR3(RiRDR;tph((s&/sys/lib/python2.7/logging/__init__.pyRs,      cCsA|tkr4t|ts4td|jq4n||_dS(sY Set the class to be used when instantiating a logger with this Manager. s(logger not derived from logging.Logger: N(R RR:RsR(RiR((s&/sys/lib/python2.7/logging/__init__.pyR"s  cCs|j}|jd}d}x|dkr| r|| }||jkrct||j|scCs:|j|k r*dj|j|f}n|jj|S(sb Get a logger which is a descendant to this one. This is a convenience method, such that logging.getLogger('abc').getChild('def.ghi') is the same as logging.getLogger('abc.def.ghi') It's useful, for example, when the parent logger is named using __name__ rather than a literal string. R(RtjoinRDRR(Ritsuffix((s&/sys/lib/python2.7/logging/__init__.pytgetChildFsN(RsRtRuRRmRRRR$R#RRRRR RRSRRRRRRRRR(((s&/sys/lib/python2.7/logging/__init__.pyR Fs,          t RootLoggercBseZdZdZRS(s A root logger is not that different to any other logger, except that it must have a logging level and there is only one instance of it in the hierarchy. cCstj|d|dS(s= Initialize the logger with the name "root". RN(R Rm(RiR1((s&/sys/lib/python2.7/logging/__init__.pyRm_s(RsRtRuRm(((s&/sys/lib/python2.7/logging/__init__.pyRYscBsheZdZdZdZdZdZdZdZdZ dZ d Z d Z RS( so An adapter for loggers which makes it easier to specify contextual information in logging output. cCs||_||_dS(sx Initialize the adapter with a logger and a dict-like object which provides contextual information. This constructor signature allows easy stacking of LoggerAdapters, if so desired. You can effectively pass keyword arguments as shown in the following example: adapter = LoggerAdapter(someLogger, dict(p1=v1, p2="v2")) N(RR(RiRR((s&/sys/lib/python2.7/logging/__init__.pyRmms cCs|j|d<||fS(s Process the logging message and keyword arguments passed in to a logging call to insert contextual information. You can either manipulate the message itself, the keyword args or both. Return the message and kwargs modified (or not) to suit your needs. Normally, you'll only need to override this one method in a LoggerAdapter subclass for your specific needs. R(R(RiRER((s&/sys/lib/python2.7/logging/__init__.pyRh{s cOs2|j||\}}|jj|||dS(s Delegate a debug call to the underlying logger, after adding contextual information from this adapter instance. N(RhRR(RiRERHR((s&/sys/lib/python2.7/logging/__init__.pyRscOs2|j||\}}|jj|||dS(s Delegate an info call to the underlying logger, after adding contextual information from this adapter instance. N(RhRR(RiRERHR((s&/sys/lib/python2.7/logging/__init__.pyRscOs2|j||\}}|jj|||dS(s Delegate a warning call to the underlying logger, after adding contextual information from this adapter instance. N(RhRR$(RiRERHR((s&/sys/lib/python2.7/logging/__init__.pyR$scOs2|j||\}}|jj|||dS(s Delegate an error call to the underlying logger, after adding contextual information from this adapter instance. N(RhRR(RiRERHR((s&/sys/lib/python2.7/logging/__init__.pyRscOs<|j||\}}d|d<|jj|||dS(s Delegate an exception call to the underlying logger, after adding contextual information from this adapter instance. iR)N(RhRR(RiRERHR((s&/sys/lib/python2.7/logging/__init__.pyRs cOs2|j||\}}|jj|||dS(s Delegate a critical call to the underlying logger, after adding contextual information from this adapter instance. N(RhRR(RiRERHR((s&/sys/lib/python2.7/logging/__init__.pyRscOs5|j||\}}|jj||||dS(s Delegate a log call to the underlying logger, after adding contextual information from this adapter instance. N(RhRR (RiR1RERHR((s&/sys/lib/python2.7/logging/__init__.pyR scCs|jj|S(sR See if the underlying logger is enabled for the specified level. (RR(RiR1((s&/sys/lib/python2.7/logging/__init__.pyRs( RsRtRuRmRhRRR$RRRR R(((s&/sys/lib/python2.7/logging/__init__.pyR gs       s"%(levelname)s:%(name)s:%(message)sc Kstzttjdkr|jd}|rX|jdd}t||}n|jd}t|}|jdt}|jdd }t ||}|j |tj ||jd}|d k rtj |qnWd t Xd S( s Do basic configuration for the logging system. This function does nothing if the root logger already has handlers configured. It is a convenience method intended for use by simple scripts to do one-shot configuration of the logging package. The default behaviour is to create a StreamHandler which writes to sys.stderr, set a formatter using the BASIC_FORMAT format string, and add the handler to the root logger. A number of optional keyword arguments may be specified, which can alter the default behaviour. filename Specifies that a FileHandler be created, using the specified filename, rather than a StreamHandler. filemode Specifies the mode to open the file, if filename is specified (if filemode is unspecified, it defaults to 'a'). format Use the specified format string for the handler. datefmt Use the specified date/time format. level Set the root logger level to the specified level. stream Use the specified stream to initialize the StreamHandler. Note that this argument is incompatible with 'filename' - if both are present, 'stream' is ignored. Note that you could specify a stream created using open(filename, mode) rather than passing the filename and mode in. However, it should be remembered that StreamHandler does not close its stream (since it may be using sys.stdout or sys.stderr), whereas FileHandler closes its stream when the handler is closed. iROtfilemodeRRRRzR1N(R2RFRRR0RRRRSRRRRR3( RRORRRRtdfsR{R1((s&/sys/lib/python2.7/logging/__init__.pyRs$"    cCs|rtjj|StSdS(s Return a logger with the specified name, creating it if necessary. If no name is specified, return the root logger. N(R RRR(RD((s&/sys/lib/python2.7/logging/__init__.pyR scOs6ttjdkrtntj|||dS(sD Log a message with severity 'CRITICAL' on the root logger. iN(RFRRRR(RERHR((s&/sys/lib/python2.7/logging/__init__.pyR!s cOs6ttjdkrtntj|||dS(sA Log a message with severity 'ERROR' on the root logger. iN(RFRRRR(RERHR((s&/sys/lib/python2.7/logging/__init__.pyR+s cOsd|dRRRR9R?R(t handlerListRth((s&/sys/lib/python2.7/logging/__init__.pytshutdowncs   cBs)eZdZdZdZdZRS(s This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. cCsdS(N((RiR~((s&/sys/lib/python2.7/logging/__init__.pyRscCsdS(N((RiR~((s&/sys/lib/python2.7/logging/__init__.pyRscCs d|_dS(N(RSR(Ri((s&/sys/lib/python2.7/logging/__init__.pyRs(RsRtRuRRR(((s&/sys/lib/python2.7/logging/__init__.pyRs   cCs|dk r7tdk rt||||||qnStj|||||}td}|jsz|jtn|jd|dS(s Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. s py.warningss%sN( RSt_warnings_showwarningtwarningst formatwarningRRRRR$(RtcategoryRORUtfiletlineRR((s&/sys/lib/python2.7/logging/__init__.pyt _showwarnings    cCsL|r*tdkrHtjatt_qHntdk rHtt_dandS(s If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. N(RRSRt showwarningR(tcapture((s&/sys/lib/python2.7/logging/__init__.pyRs    (bRuR(RLRCRRRRt__all__Rt ImportErrorRSR\R^t __author__t __status__t __version__t__date__RtTrueRot NameErrortFalseRgtsept__file__RtlowerRMRR,RYRR[RaRfRRRRRR RRR/RRR<RR=R2R3tobjectR R!RRRRRtWeakValueDictionaryRRRRR RRRRR"RRR RR RRRRRRRRRR$R#RRR RR tatexittregisterRRRR(((s&/sys/lib/python2.7/logging/__init__.pytsT               e  *%,   G@ f `   <