Created
December 30, 2018 14:00
-
-
Save djthorpe/01f1d2c80d4a072059528f8a9f8b1545 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Logger interface { | |
Driver | |
// Output logging messages | |
Fatal(format string, v ...interface{}) error | |
Error(format string, v ...interface{}) error | |
Warn(format string, v ...interface{}) | |
Info(format string, v ...interface{}) | |
Debug(format string, v ...interface{}) | |
Debug2(format string, v ...interface{}) | |
// Return IsDebug flag | |
IsDebug() bool | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment