Exemplo n.º 1
0
Arquivo: log.go Projeto: Gys/deployit
func (l *Log) Fatalf(format string, args ...interface{}) {
	if l.Logger.Level >= logrus.DebugLevel {
		entry := l.Logger.WithFields(logrus.Fields{})
		entry.Data["file"] = utils.FileLine()
		entry.Fatalf(format, args)
	}
}
Exemplo n.º 2
0
Arquivo: log.go Projeto: Gys/deployit
func (l *Log) Fatal(args ...interface{}) {
	if l.Logger.Level >= logrus.FatalLevel {
		entry := l.Logger.WithFields(logrus.Fields{})
		entry.Data["file"] = utils.FileLine()
		entry.Fatal(args...)
	}
}
Exemplo n.º 3
0
func (p *Print) Errorf(format string, a ...interface{}) {
	format += "\n"
	p.Red.Printf(format, "[ERROR, ", utils.FileLine(), "]: ", a)
}
Exemplo n.º 4
0
func (p *Print) Error(a ...interface{}) {
	p.Red.Print("[ERROR, ", utils.FileLine(), "]: ", a, "\n")
}
Exemplo n.º 5
0
func (p *Print) Debugf(format string, a ...interface{}) {
	if p.DebugMode {
		format += "\n"
		p.White.Printf(format, "[DEBUG, ", utils.FileLine(), "]: ", a)
	}
}
Exemplo n.º 6
0
func (p *Print) Debug(a ...interface{}) {
	if p.DebugMode {
		p.White.Print("[DEBUG, ", utils.FileLine(), "]: ", a, "\n")
	}
}