PyTest Salt Log Handler#

Salt External Logging Handler.

saltfactories.utils.saltext.log_handlers.pytest_log_handler.setup_handlers()[source]#

Setup the handlers.

class saltfactories.utils.saltext.log_handlers.pytest_log_handler.ZMQHandler(*args, **kwargs)[source]#

Bases: ExcInfoOnLogLevelFormatMixin, Handler

ZMQ logging handler implementation.

setFormatter(_)[source]#

Overridden method to show an error.

start()[source]#

Start the handler.

stop(flush=True)[source]#

Stop the handler.

format(record)[source]#

Format the log record.

prepare(record)[source]#

Prepare the log record.

emit(record)[source]#

Emit a record.

Writes the LogRecord to the queue, preparing it for pickling first.

close()[source]#

Tidy up any resources used by the handler.

acquire()#

Acquire the I/O thread lock.

addFilter(filter)#

Add the specified filter to this handler.

createLock()#

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

filter(record)#

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.

Changed in version 3.2: Allow filters to be just callables.

flush()#

Ensure all logging output has been flushed.

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

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.

release()#

Release the I/O thread lock.

removeFilter(filter)#

Remove the specified filter from this handler.

setLevel(level)#

Set the logging level of this handler. level must be an int or a str.