initial
This commit is contained in:
16
console_handler.go
Normal file
16
console_handler.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package simplelog
|
||||
|
||||
import (
|
||||
"github.com/fatih/color"
|
||||
)
|
||||
|
||||
type ConsoleHandler struct{}
|
||||
|
||||
func NewConsoleHandler() *ConsoleHandler {
|
||||
return &ConsoleHandler{}
|
||||
}
|
||||
|
||||
func (c *ConsoleHandler) Log(event Event) error {
|
||||
color.New(color.FgBlue).PrintfFunc()("%s: %s\n", event.Level, event.Message)
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user