1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-05 16:13:49 +00:00
Files
gatus/vendor/github.com/modern-go/concurrent/log.go
2020-10-30 21:01:12 +05:30

13 lines
301 B
Go

package concurrent
import (
"os"
"log"
"io/ioutil"
)
// ErrorLogger is used to print out error, can be set to writer other than stderr
var ErrorLogger = log.New(os.Stderr, "", 0)
// InfoLogger is used to print informational message, default to off
var InfoLogger = log.New(ioutil.Discard, "", 0)