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, 0 insertions, 13 deletions
diff --git a/vendor/github.com/modern-go/concurrent/log.go b/vendor/github.com/modern-go/concurrent/log.go deleted file mode 100644 index 9756fcc..0000000 --- a/vendor/github.com/modern-go/concurrent/log.go +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
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 | ||