master
Charles Iliya Krempeaux 2021-02-09 13:31:00 -08:00
parent b564f8120b
commit 002575bd70
1 changed files with 6 additions and 0 deletions

View File

@ -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()