LogMode
LogMode represents the logging mode of SDK clients. The mode is backed by a bit-field where each bit is a flag (mode) that describes the logging behavior for one or more client components.
Example: Setting log mode to enable logging of requests and responses
val mode = LogMode.LogRequest + LogMode.LogResponse
Content copied to clipboard
Inheritors
Types
Link copied to clipboard
Log the request details, e.g. url, headers, etc.
Link copied to clipboard
Log the request details as well as the body if possible
Link copied to clipboard
Log the response details, e.g. status, headers, etc
Link copied to clipboard
Log the response details as well as the body if possible