github.com/naoina/kocha@v0.7.1-0.20171129072645-78c7a531f799/log.go (about)

     1  package kocha
     2  
     3  import (
     4  	"io"
     5  
     6  	"github.com/naoina/kocha/log"
     7  )
     8  
     9  // LoggerConfig represents the configuration of the logger.
    10  type LoggerConfig struct {
    11  	Writer    io.Writer     // output destination for the logger.
    12  	Formatter log.Formatter // formatter for log entry.
    13  	Level     log.Level     // log level.
    14  }