Add Trace level logging

This commit is contained in:
Giedrius Dubinskas
2017-10-02 19:38:29 +03:00
committed by Loren Osborn
parent 4981d8161c
commit c7a33dc5de
3 changed files with 13 additions and 3 deletions
+2 -2
View File
@@ -122,7 +122,7 @@ func Fatal(args ...interface{}) {
std.Fatal(args...)
}
// Tracef logs a message at level Debug on the standard logger.
// Tracef logs a message at level Trace on the standard logger.
func Tracef(format string, args ...interface{}) {
std.Tracef(format, args...)
}
@@ -167,7 +167,7 @@ func Fatalf(format string, args ...interface{}) {
std.Fatalf(format, args...)
}
// Traceln logs a message at level Debug on the standard logger.
// Traceln logs a message at level Trace on the standard logger.
func Traceln(args ...interface{}) {
std.Traceln(args...)
}