Skip to content
Snippets Groups Projects
Commit 88cc8316 authored by Tamer Tas's avatar Tamer Tas
Browse files

Add input logging utilities

parent 26d3a00b
No related branches found
No related tags found
No related merge requests found
// Package flog implements logging utilities for tmplt
package tlog
import "github.com/Sirupsen/logrus"
func Debug(msg string) {
logrus.Debug(msg)
}
func Info(msg string) {
logrus.Info(msg)
}
func Warn(msg string) {
logrus.Warning(msg)
}
func Error(msg string) {
logrus.Error(msg)
}
func Fatal(msg string) {
logrus.Fatal(msg)
}
func Panic(msg string) {
logrus.Panic(msg)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment