diff options
Diffstat (limited to 'vendor/github.com/modern-go/concurrent/log.go')
-rw-r--r-- | vendor/github.com/modern-go/concurrent/log.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/github.com/modern-go/concurrent/log.go b/vendor/github.com/modern-go/concurrent/log.go new file mode 100644 index 0000000..9756fcc --- /dev/null +++ b/vendor/github.com/modern-go/concurrent/log.go | |||
@@ -0,0 +1,13 @@ | |||
1 | package concurrent | ||
2 | |||
3 | import ( | ||
4 | "os" | ||
5 | "log" | ||
6 | "io/ioutil" | ||
7 | ) | ||
8 | |||
9 | // ErrorLogger is used to print out error, can be set to writer other than stderr | ||
10 | var ErrorLogger = log.New(os.Stderr, "", 0) | ||
11 | |||
12 | // InfoLogger is used to print informational message, default to off | ||
13 | var InfoLogger = log.New(ioutil.Discard, "", 0) \ No newline at end of file | ||