Previous topic

mmf.async.example

This Page

mmf.async.logger

logging
MyLogger(name)
BufferingFormatter([linefmt]) A formatter suitable for formatting a number of records.
FileHandler(filename[, mode, encoding, delay]) A handler class which writes formatted logging records to disk files.
Filter([name]) Filter instances are used to perform arbitrary filtering of LogRecords.
Formatter([fmt, datefmt]) Formatter instances are used to convert a LogRecord to text.
Handler([level]) Handler instances dispatch logging events to specific destinations.
LogRecord(name, level, pathname, lineno, ...) A LogRecord instance represents an event being logged.
Logger(name[, level]) Instances of the Logger class represent a single logging channel. A
LoggerAdapter(logger, extra) An adapter for loggers which makes it easier to specify contextual information in logging output.
NullHandler([level]) This handler does nothing.
StreamHandler([stream]) A handler class which writes logging records, appropriately formatted, to a stream.
getLogger(name[, logLevel]) Return a logging object.
addLevelName(level, levelName) Associate ‘levelName’ with ‘level’.
basicConfig(**kwargs) Do basic configuration for the logging system.
captureWarnings(capture) If capture is true, redirect all warnings to the logging package.
critical(msg, *args, **kwargs) Log a message with severity ‘CRITICAL’ on the root logger.
debug(msg, *args, **kwargs) Log a message with severity ‘DEBUG’ on the root logger.
disable(level) Disable all logging calls of severity ‘level’ and below.
error(msg, *args, **kwargs) Log a message with severity ‘ERROR’ on the root logger.
exception(msg, *args) Log a message with severity ‘ERROR’ on the root logger,
fatal(msg, *args, **kwargs) Log a message with severity ‘CRITICAL’ on the root logger.
getLevelName(level) Return the textual representation of logging level ‘level’.
getLogger(name[, logLevel]) Return a logging object.
getLoggerClass() Return the class to be used when instantiating a logger.
info(msg, *args, **kwargs) Log a message with severity ‘INFO’ on the root logger.
log(level, msg, *args, **kwargs) Log ‘msg % args’ with the integer severity ‘level’ on the root logger.
makeLogRecord(dict) Make a LogRecord whose attributes are defined by the specified dictionary,
setLoggerClass(klass) Set the class to be used when instantiating a logger.
warn(msg, *args, **kwargs) Log a message with severity ‘WARNING’ on the root logger.
warning(msg, *args, **kwargs) Log a message with severity ‘WARNING’ on the root logger.

Inheritance diagram for mmf.async.logger:

Inheritance diagram of mmf.async.logger

class mmf.async.logger.MyLogger(name)[source]

Bases: mmf.utils.logging.MMFLogger

Methods

addFilter(filter) Add the specified filter to this handler.
addHandler(hdlr) Add the specified handler to this logger.
callHandlers(record) Pass a record to all relevant handlers.
critical(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘CRITICAL’.
ddump(msg, data)
debug(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘DEBUG’.
dump(msg, *v, **kw)
error(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘ERROR’.
exception(msg, *args) Convenience method for logging an ERROR with exception information.
fatal(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘CRITICAL’.
filter(record) Determine if a record is loggable by consulting all the filters.
findCaller() Find the stack frame of the caller so that we can note the source
getChild(suffix) Get a logger which is a descendant to this one.
getEffectiveLevel() Get the effective level for this logger.
handle(record) Call the handlers for the specified record.
info(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘INFO’.
isEnabledFor(level) Is this logger enabled for level ‘level’?
log(level, msg, *args, **kwargs) Log ‘msg % args’ with the integer severity ‘level’.
makeRecord(name, level, fn, lno, msg, args, ...) A factory method which can be overridden in subclasses to create
removeFilter(filter) Remove the specified filter from this handler.
removeHandler(hdlr) Remove the specified handler from this logger.
setLevel(level) Set the logging level of this logger.
warn(msg, *arg, **kw)
warning(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘WARNING’.
__init__(name)
ddump(msg, data)[source]
dump(msg, *v, **kw)[source]
class mmf.async.logger.BufferingFormatter(linefmt=None)

Bases: object

A formatter suitable for formatting a number of records.

Methods

format(records) Format the specified records and return the result as a string.
formatFooter(records) Return the footer string for the specified records.
formatHeader(records) Return the header string for the specified records.

Optionally specify a formatter which will be used to format each individual record.

Methods

format(records) Format the specified records and return the result as a string.
formatFooter(records) Return the footer string for the specified records.
formatHeader(records) Return the header string for the specified records.
__init__(linefmt=None)

Optionally specify a formatter which will be used to format each individual record.

format(records)

Format the specified records and return the result as a string.

formatFooter(records)

Return the footer string for the specified records.

formatHeader(records)

Return the header string for the specified records.

class mmf.async.logger.FileHandler(filename, mode='a', encoding=None, delay=0)

Bases: logging.StreamHandler

A handler class which writes formatted logging records to disk files.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Closes the stream.
createLock() Acquire a thread lock for serializing access to the underlying I/O.
emit(record) Emit a record.
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Flushes the stream.
format(record) Format the specified record.
get_name()
handle(record) Conditionally emit the specified logging record.
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)

Open the specified file and use it as the stream for logging.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Closes the stream.
createLock() Acquire a thread lock for serializing access to the underlying I/O.
emit(record) Emit a record.
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Flushes the stream.
format(record) Format the specified record.
get_name()
handle(record) Conditionally emit the specified logging record.
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)
__init__(filename, mode='a', encoding=None, delay=0)

Open the specified file and use it as the stream for logging.

close()

Closes the stream.

emit(record)

Emit a record.

If the stream was not opened because ‘delay’ was specified in the constructor, open it before calling the superclass’s emit.

class mmf.async.logger.Filter(name='')

Bases: object

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.

Methods

filter(record) Determine if the specified record is to be logged.

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.

Methods

filter(record) Determine if the specified record is to be logged.
__init__(name='')

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.

filter(record)

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.

class mmf.async.logger.Formatter(fmt=None, datefmt=None)

Bases: object

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

Methods

converter(...) Convert seconds since the Epoch to a time tuple expressing local time.
format(record) Format the specified record as text.
formatException(ei) Format and return the specified exception information as a string.
formatTime(record[, datefmt]) Return the creation time of the specified LogRecord as formatted text.
usesTime() Check if the format uses the creation time of the record.

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).

Methods

converter(...) Convert seconds since the Epoch to a time tuple expressing local time.
format(record) Format the specified record as text.
formatException(ei) Format and return the specified exception information as a string.
formatTime(record[, datefmt]) Return the creation time of the specified LogRecord as formatted text.
usesTime() Check if the format uses the creation time of the record.
__init__(fmt=None, datefmt=None)

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).

converter([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, tm_sec,tm_wday,tm_yday,tm_isdst)

Convert seconds since the Epoch to a time tuple expressing local time. When ‘seconds’ is not passed in, convert the current time instead.

format(record)

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.

formatException(ei)

Format and return the specified exception information as a string.

This default implementation just uses traceback.print_exception()

formatTime(record, datefmt=None)

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.

usesTime()

Check if the format uses the creation time of the record.

class mmf.async.logger.Handler(level=0)

Bases: logging.Filterer

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.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Tidy up any resources used by the handler.
createLock() Acquire a thread lock for serializing access to the underlying I/O.
emit(record) Do whatever it takes to actually log the specified logging record.
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Ensure all logging output has been flushed.
format(record) Format the specified record.
get_name()
handle(record) Conditionally emit the specified logging record.
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)

Initializes the instance - basically setting the formatter to None and the filter list to empty.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Tidy up any resources used by the handler.
createLock() Acquire a thread lock for serializing access to the underlying I/O.
emit(record) Do whatever it takes to actually log the specified logging record.
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Ensure all logging output has been flushed.
format(record) Format the specified record.
get_name()
handle(record) Conditionally emit the specified logging record.
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)
__init__(level=0)

Initializes the instance - basically setting the formatter to None and the filter list to empty.

acquire()

Acquire the I/O thread lock.

close()

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.

createLock()

Acquire a thread lock for serializing access to the underlying I/O.

emit(record)

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.

flush()

Ensure all logging output has been flushed.

This version does nothing and is intended to be implemented by subclasses.

format(record)

Format the specified record.

If a formatter is set, use it. Otherwise, use the default formatter for the module.

get_name()
handle(record)

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.

handleError(record)

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.

name
release()

Release the I/O thread lock.

setFormatter(fmt)

Set the formatter for this handler.

setLevel(level)

Set the logging level of this handler.

set_name(name)
class mmf.async.logger.LogRecord(name, level, pathname, lineno, msg, args, exc_info, func=None)

Bases: object

A LogRecord instance represents an event being logged.

LogRecord instances are created every time something is logged. They contain all the information pertinent to the event being logged. The main information passed in is in msg and args, which are combined using str(msg) % args to create the message field of the record. The record also includes information such as when the record was created, the source line where the logging call was made, and any exception information to be logged.

Methods

getMessage() Return the message for this LogRecord.

Initialize a logging record with interesting information.

Methods

getMessage() Return the message for this LogRecord.
__init__(name, level, pathname, lineno, msg, args, exc_info, func=None)

Initialize a logging record with interesting information.

getMessage()

Return the message for this LogRecord.

Return the message for this LogRecord after merging any user-supplied arguments with the message.

class mmf.async.logger.Logger(name, level=0)

Bases: logging.Filterer

Instances of the Logger class represent a single logging channel. A “logging channel” indicates an area of an application. Exactly how an “area” is defined is up to the application developer. Since an application can have any number of areas, logging channels are identified by a unique string. Application areas can be nested (e.g. an area of “input processing” might include sub-areas “read CSV files”, “read XLS files” and “read Gnumeric files”). To cater for this natural nesting, channel names are organized into a namespace hierarchy where levels are separated by periods, much like the Java or Python package namespace. So in the instance given above, channel names might be “input” for the upper level, and “input.csv”, “input.xls” and “input.gnu” for the sub-levels. There is no arbitrary limit to the depth of nesting.

Methods

addFilter(filter) Add the specified filter to this handler.
addHandler(hdlr) Add the specified handler to this logger.
callHandlers(record) Pass a record to all relevant handlers.
critical(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘CRITICAL’.
debug(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘DEBUG’.
error(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘ERROR’.
exception(msg, *args) Convenience method for logging an ERROR with exception information.
fatal(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘CRITICAL’.
filter(record) Determine if a record is loggable by consulting all the filters.
findCaller() Find the stack frame of the caller so that we can note the source
getChild(suffix) Get a logger which is a descendant to this one.
getEffectiveLevel() Get the effective level for this logger.
handle(record) Call the handlers for the specified record.
info(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘INFO’.
isEnabledFor(level) Is this logger enabled for level ‘level’?
log(level, msg, *args, **kwargs) Log ‘msg % args’ with the integer severity ‘level’.
makeRecord(name, level, fn, lno, msg, args, ...) A factory method which can be overridden in subclasses to create
removeFilter(filter) Remove the specified filter from this handler.
removeHandler(hdlr) Remove the specified handler from this logger.
setLevel(level) Set the logging level of this logger.
warn(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘WARNING’.
warning(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘WARNING’.

Initialize the logger with a name and an optional level.

Methods

addFilter(filter) Add the specified filter to this handler.
addHandler(hdlr) Add the specified handler to this logger.
callHandlers(record) Pass a record to all relevant handlers.
critical(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘CRITICAL’.
debug(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘DEBUG’.
error(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘ERROR’.
exception(msg, *args) Convenience method for logging an ERROR with exception information.
fatal(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘CRITICAL’.
filter(record) Determine if a record is loggable by consulting all the filters.
findCaller() Find the stack frame of the caller so that we can note the source
getChild(suffix) Get a logger which is a descendant to this one.
getEffectiveLevel() Get the effective level for this logger.
handle(record) Call the handlers for the specified record.
info(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘INFO’.
isEnabledFor(level) Is this logger enabled for level ‘level’?
log(level, msg, *args, **kwargs) Log ‘msg % args’ with the integer severity ‘level’.
makeRecord(name, level, fn, lno, msg, args, ...) A factory method which can be overridden in subclasses to create
removeFilter(filter) Remove the specified filter from this handler.
removeHandler(hdlr) Remove the specified handler from this logger.
setLevel(level) Set the logging level of this logger.
warn(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘WARNING’.
warning(msg, *args, **kwargs) Log ‘msg % args’ with severity ‘WARNING’.
__init__(name, level=0)

Initialize the logger with a name and an optional level.

addHandler(hdlr)

Add the specified handler to this logger.

callHandlers(record)

Pass a record to all relevant handlers.

Loop through all handlers for this logger and its parents in the logger hierarchy. If no handler was found, output a one-off error message to sys.stderr. Stop searching up the hierarchy whenever a logger with the “propagate” attribute set to zero is found - that will be the last logger whose handlers are called.

critical(msg, *args, **kwargs)

Log ‘msg % args’ with severity ‘CRITICAL’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.critical(“Houston, we have a %s”, “major disaster”, exc_info=1)

debug(msg, *args, **kwargs)

Log ‘msg % args’ with severity ‘DEBUG’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.debug(“Houston, we have a %s”, “thorny problem”, exc_info=1)

error(msg, *args, **kwargs)

Log ‘msg % args’ with severity ‘ERROR’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.error(“Houston, we have a %s”, “major problem”, exc_info=1)

exception(msg, *args)

Convenience method for logging an ERROR with exception information.

fatal(msg, *args, **kwargs)

Log ‘msg % args’ with severity ‘CRITICAL’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.critical(“Houston, we have a %s”, “major disaster”, exc_info=1)

findCaller()

Find the stack frame of the caller so that we can note the source file name, line number and function name.

getChild(suffix)

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.

getEffectiveLevel()

Get the effective level for this logger.

Loop through this logger and its parents in the logger hierarchy, looking for a non-zero logging level. Return the first one found.

handle(record)

Call the handlers for the specified record.

This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied.

info(msg, *args, **kwargs)

Log ‘msg % args’ with severity ‘INFO’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.info(“Houston, we have a %s”, “interesting problem”, exc_info=1)

isEnabledFor(level)

Is this logger enabled for level ‘level’?

log(level, msg, *args, **kwargs)

Log ‘msg % args’ with the integer severity ‘level’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.log(level, “We have a %s”, “mysterious problem”, exc_info=1)

makeRecord(name, level, fn, lno, msg, args, exc_info, func=None, extra=None)

A factory method which can be overridden in subclasses to create specialized LogRecords.

manager = <logging.Manager object at 0x147ba50>
removeHandler(hdlr)

Remove the specified handler from this logger.

root = <mmf.utils.logging.MMFLogger object at 0x144fc90>
setLevel(level)

Set the logging level of this logger.

warn(msg, *args, **kwargs)

Log ‘msg % args’ with severity ‘WARNING’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.warning(“Houston, we have a %s”, “bit of a problem”, exc_info=1)

warning(msg, *args, **kwargs)

Log ‘msg % args’ with severity ‘WARNING’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.warning(“Houston, we have a %s”, “bit of a problem”, exc_info=1)

class mmf.async.logger.LoggerAdapter(logger, extra)

Bases: object

An adapter for loggers which makes it easier to specify contextual information in logging output.

Methods

critical(msg, *args, **kwargs) Delegate a critical call to the underlying logger, after adding
debug(msg, *args, **kwargs) Delegate a debug call to the underlying logger, after adding
error(msg, *args, **kwargs) Delegate an error call to the underlying logger, after adding
exception(msg, *args, **kwargs) Delegate an exception call to the underlying logger, after adding
info(msg, *args, **kwargs) Delegate an info call to the underlying logger, after adding
isEnabledFor(level) See if the underlying logger is enabled for the specified level.
log(level, msg, *args, **kwargs) Delegate a log call to the underlying logger, after adding
process(msg, kwargs) Process the logging message and keyword arguments passed in to a logging call to insert contextual information.
warning(msg, *args, **kwargs) Delegate a warning call to the underlying logger, after adding

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”))

Methods

critical(msg, *args, **kwargs) Delegate a critical call to the underlying logger, after adding
debug(msg, *args, **kwargs) Delegate a debug call to the underlying logger, after adding
error(msg, *args, **kwargs) Delegate an error call to the underlying logger, after adding
exception(msg, *args, **kwargs) Delegate an exception call to the underlying logger, after adding
info(msg, *args, **kwargs) Delegate an info call to the underlying logger, after adding
isEnabledFor(level) See if the underlying logger is enabled for the specified level.
log(level, msg, *args, **kwargs) Delegate a log call to the underlying logger, after adding
process(msg, kwargs) Process the logging message and keyword arguments passed in to a logging call to insert contextual information.
warning(msg, *args, **kwargs) Delegate a warning call to the underlying logger, after adding
__init__(logger, extra)

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”))

critical(msg, *args, **kwargs)

Delegate a critical call to the underlying logger, after adding contextual information from this adapter instance.

debug(msg, *args, **kwargs)

Delegate a debug call to the underlying logger, after adding contextual information from this adapter instance.

error(msg, *args, **kwargs)

Delegate an error call to the underlying logger, after adding contextual information from this adapter instance.

exception(msg, *args, **kwargs)

Delegate an exception call to the underlying logger, after adding contextual information from this adapter instance.

info(msg, *args, **kwargs)

Delegate an info call to the underlying logger, after adding contextual information from this adapter instance.

isEnabledFor(level)

See if the underlying logger is enabled for the specified level.

log(level, msg, *args, **kwargs)

Delegate a log call to the underlying logger, after adding contextual information from this adapter instance.

process(msg, kwargs)

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.

warning(msg, *args, **kwargs)

Delegate a warning call to the underlying logger, after adding contextual information from this adapter instance.

class mmf.async.logger.NullHandler(level=0)

Bases: logging.Handler

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.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Tidy up any resources used by the handler.
createLock()
emit(record)
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Ensure all logging output has been flushed.
format(record) Format the specified record.
get_name()
handle(record)
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)

Initializes the instance - basically setting the formatter to None and the filter list to empty.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Tidy up any resources used by the handler.
createLock()
emit(record)
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Ensure all logging output has been flushed.
format(record) Format the specified record.
get_name()
handle(record)
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)
__init__(level=0)

Initializes the instance - basically setting the formatter to None and the filter list to empty.

createLock()
emit(record)
handle(record)
class mmf.async.logger.StreamHandler(stream=None)

Bases: logging.Handler

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.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Tidy up any resources used by the handler.
createLock() Acquire a thread lock for serializing access to the underlying I/O.
emit(record) Emit a record.
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Flushes the stream.
format(record) Format the specified record.
get_name()
handle(record) Conditionally emit the specified logging record.
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)

Initialize the handler.

If stream is not specified, sys.stderr is used.

Methods

acquire() Acquire the I/O thread lock.
addFilter(filter) Add the specified filter to this handler.
close() Tidy up any resources used by the handler.
createLock() Acquire a thread lock for serializing access to the underlying I/O.
emit(record) Emit a record.
filter(record) Determine if a record is loggable by consulting all the filters.
flush() Flushes the stream.
format(record) Format the specified record.
get_name()
handle(record) Conditionally emit the specified logging record.
handleError(record) Handle errors which occur during an emit() call.
release() Release the I/O thread lock.
removeFilter(filter) Remove the specified filter from this handler.
setFormatter(fmt) Set the formatter for this handler.
setLevel(level) Set the logging level of this handler.
set_name(name)
__init__(stream=None)

Initialize the handler.

If stream is not specified, sys.stderr is used.

emit(record)

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.

flush()

Flushes the stream.

mmf.async.logger.getLogger(name, logLevel=20)[source]

Return a logging object.

mmf.async.logger.addLevelName(level, levelName)

Associate ‘levelName’ with ‘level’.

This is used when converting levels to text during message formatting.

mmf.async.logger.basicConfig(**kwargs)

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.

mmf.async.logger.captureWarnings(capture)

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.

mmf.async.logger.critical(msg, *args, **kwargs)

Log a message with severity ‘CRITICAL’ on the root logger.

mmf.async.logger.debug(msg, *args, **kwargs)

Log a message with severity ‘DEBUG’ on the root logger.

mmf.async.logger.disable(level)

Disable all logging calls of severity ‘level’ and below.

mmf.async.logger.error(msg, *args, **kwargs)

Log a message with severity ‘ERROR’ on the root logger.

mmf.async.logger.exception(msg, *args)

Log a message with severity ‘ERROR’ on the root logger, with exception information.

mmf.async.logger.fatal(msg, *args, **kwargs)

Log a message with severity ‘CRITICAL’ on the root logger.

mmf.async.logger.getLevelName(level)

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.

mmf.async.logger.getLogger(name, logLevel=20)[source]

Return a logging object.

mmf.async.logger.getLoggerClass()

Return the class to be used when instantiating a logger.

mmf.async.logger.info(msg, *args, **kwargs)

Log a message with severity ‘INFO’ on the root logger.

mmf.async.logger.log(level, msg, *args, **kwargs)

Log ‘msg % args’ with the integer severity ‘level’ on the root logger.

mmf.async.logger.makeLogRecord(dict)

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.

mmf.async.logger.setLoggerClass(klass)

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__()

mmf.async.logger.warn(msg, *args, **kwargs)

Log a message with severity ‘WARNING’ on the root logger.

mmf.async.logger.warning(msg, *args, **kwargs)

Log a message with severity ‘WARNING’ on the root logger.