logging.NullHandler.emit()
  • References/Python/Python/Logging

emit(record) This method does nothing.

2025-01-10 15:47:30
logging.handlers.SocketHandler.send()
  • References/Python/Python/Logging

send(packet) Send a pickled string packet to the socket. This function allows for partial sends which can happen when

2025-01-10 15:47:30
logging.basicConfig()
  • References/Python/Python/Logging

logging.basicConfig(**kwargs) Does basic configuration for the logging system by creating a

2025-01-10 15:47:30
logging.handlers.SocketHandler
  • References/Python/Python/Logging

class logging.handlers.SocketHandler(host, port) Returns a new instance of the SocketHandler class intended to

2025-01-10 15:47:30
logging.Formatter.format()
  • References/Python/Python/Logging

format(record) The record’s attribute dictionary is used as the operand to a string formatting operation. Returns the resulting

2025-01-10 15:47:30
logging.handlers.SocketHandler.makeSocket()
  • References/Python/Python/Logging

makeSocket() This is a factory method which allows subclasses to define the precise type of socket they want. The default implementation

2025-01-10 15:47:30
logging.handlers.BaseRotatingHandler.rotator
  • References/Python/Python/Logging

rotator If this attribute is set to a callable, the rotate() method delegates to this callable. The parameters

2025-01-10 15:47:30
logging.Handler.acquire()
  • References/Python/Python/Logging

Handler.acquire() Acquires the thread lock created with createLock().

2025-01-10 15:47:30
logging.setLoggerClass()
  • References/Python/Python/Logging

logging.setLoggerClass(klass) Tells the logging system to use the class klass when instantiating a logger. The class

2025-01-10 15:47:30
logging.getLoggerClass()
  • References/Python/Python/Logging

logging.getLoggerClass() Return either the standard Logger class, or the last class passed to setLoggerClass()

2025-01-10 15:47:30