removes debug2 logging

This commit is contained in:
bergquist
2019-01-15 11:52:39 +01:00
parent 1b6203e430
commit 3cd0cb3d3f
2 changed files with 5 additions and 9 deletions
-8
View File
@@ -56,10 +56,6 @@ func Debug(format string, v ...interface{}) {
Root.Debug(message)
}
func Debug2(message string, v ...interface{}) {
Root.Debug(message, v...)
}
func Info(format string, v ...interface{}) {
var message string
if len(v) > 0 {
@@ -71,10 +67,6 @@ func Info(format string, v ...interface{}) {
Root.Info(message)
}
func Info2(message string, v ...interface{}) {
Root.Info(message, v...)
}
func Warn(format string, v ...interface{}) {
var message string
if len(v) > 0 {