Update vendor/

This commit is contained in:
Daniele Rondina
2020-10-10 19:59:40 +02:00
parent 3261b2af98
commit 51f32c0614
1090 changed files with 466498 additions and 1050 deletions

13
vendor/github.com/modern-go/concurrent/log.go generated vendored Normal file
View File

@@ -0,0 +1,13 @@
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)