5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-01-28 10:34:38 +00:00

13 lines
301 B
Go
Raw Normal View History

2021-10-16 23:11:32 +02:00
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)