Commit d01b4d7b authored by George Hotz's avatar George Hotz

add logger

parent 3335b945
package log
import (
"fmt"
)
func Debug(msg string, ctx ...interface{}) {
fmt.Println(msg, ctx)
}
func Info(msg string, ctx ...interface{}) {
fmt.Println(msg, ctx)
}
func Warn(msg string, ctx ...interface{}) {
fmt.Println(msg, ctx)
}
func Error(msg string, ctx ...interface{}) {
fmt.Println(msg, ctx)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment