Blame view

go/src/themaru/vendor/github.com/modern-go/concurrent/log.go 301 Bytes
476d2547e   김태훈   태마루 시스템 설정 / 업데이트...
1
2
3
4
5
6
7
8
9
10
11
12
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)