github.com/woremacx/kocha@v0.7.1-0.20150731103243-a5889322afc9/log.go (about)

     1  package kocha
     2  
     3  import (
     4  	"io"
     5  
     6  	"github.com/woremacx/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  }