diff --git a/logger.go b/logger.go index 69326c5..5806f14 100644 --- a/logger.go +++ b/logger.go @@ -1,6 +1,12 @@ package flog type Logger interface { + Alert(...interface{}) error + Alertf(string, ...interface{}) error + MuteAlert() + UnmuteAlert() + AlertMuted() bool + Debug(...interface{}) Debugf(string, ...interface{}) MuteDebug()