Documentation
¶
Overview ¶
Package logging provides a simple logging interface.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Logger ¶
type Logger interface {
// Debugw logs a message at debug level.
Debugw(format string, keysAndValues ...any)
// Infow logs a message at info level.
Infow(format string, keysAndValues ...any)
// Warnw logs a message at warn level.
Warnw(format string, keysAndValues ...any)
// Errorw logs a message at error level.
Errorw(format string, keysAndValues ...any)
}
Logger is the interface that wraps the basic logging methods. It is used by the SDK to log detailed information about requests and responses.
Click to show internal directories.
Click to hide internal directories.