Python Logging Handler Sync Transport#
Module containing base class for logging transport.
-
class
google.cloud.logging.handlers.transports.base.Transport[source]# Bases:
objectBase class for Google Cloud Logging handler transports.
Subclasses of
Transportmust have constructors that accept a client and name object, and must overridesend().-
send(record, message)[source]# Transport send to be implemented by subclasses.
Parameters: - record (
logging.LogRecord) – Python log record that the handler was called with. - message (str) – The message from the
LogRecordafter being formatted by the associated log formatters.
- record (
-