go get github.com/LlamaNite/llamalog
package main
import "github.com/LlamaNite/llamalog"
var log = llamalog.NewLogger("My Project", "Example")
func main() {
log.Info("Hi! This is %s.", "LlamaNite")
log.Warn("This is Warning")
log.Error("oh! error occurred!")
}