packageconcurrentimport("os""log""io/ioutil")// ErrorLogger is used to print out error, can be set to writer other than stderrvarErrorLogger=log.New(os.Stderr,"",0)// InfoLogger is used to print informational message, default to offvarInfoLogger=log.New(ioutil.Discard,"",0)