From 002575bd709fdeabe92d8c4137566dd1d988fbb9 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Tue, 9 Feb 2021 13:31:00 -0800 Subject: [PATCH] alert --- logger.go | 6 ++++++ 1 file changed, 6 insertions(+) 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()