upgrade dep json-iterator/go to fix #62742

This commit is contained in:
ceshihao
2018-04-24 05:44:54 +00:00
parent a53df4d905
commit 5528a4d298
107 changed files with 6108 additions and 3203 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)