Python Logging Handler Sync Transport#
Transport for Python logging handler.
Logs directly to the the Stackdriver Logging API with a synchronous call.
-
class
google.cloud.logging.handlers.transports.sync.SyncTransport(client, name)[source]# Bases:
google.cloud.logging.handlers.transports.base.TransportBasic sychronous transport.
Uses this library’s Logging client to directly make the API call.
-
send(record, message)[source]# Overrides transport.send().
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 (
-