Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DummyLogger ¶
type DummyLogger struct{}
DummyLogger does not output anything
func (*DummyLogger) Errorf ¶
func (*DummyLogger) Errorf(serivce, format string, v ...interface{})
Errorf does nothing.
func (*DummyLogger) Infof ¶
func (*DummyLogger) Infof(service, format string, v ...interface{})
Infof does nothing.
type Logger ¶
type Logger interface { // For AWS SDK's log Log(v ...interface{}) // For wrapper's log Infof(service, format string, v ...interface{}) Errorf(service, format string, v ...interface{}) }
Logger is logging interface.
var DefaultLogger Logger
DefaultLogger is default Logger.
Click to show internal directories.
Click to hide internal directories.