Documentation ¶
Index ¶
- func Debug(format string, v ...interface{})
- func Fatal(v ...interface{})
- func Fatalf(format string, v ...interface{})
- func Info(format string, v ...interface{})
- func LastLine(format string, v ...interface{})
- func LastLineThrottled(format string, v ...interface{})
- func Printf(format string, v ...interface{})
- func PrintfRawLn(format string, v ...interface{})
- func Println(v ...interface{})
- func PrintlnThrottled(format string, v ...interface{})
- func SetDebug(d bool)
- func SetEmitRateMillis(e int)
- func SetVerbose(v bool)
- func Verbose(format string, v ...interface{})
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Fatal ¶
func Fatal(v ...interface{})
Fatal is equivalent to Print() followed by a call to os.Exit(1).
func Fatalf ¶
func Fatalf(format string, v ...interface{})
Fatalf is equivalent to Printf() followed by a call to os.Exit(1).
func LastLine ¶
func LastLine(format string, v ...interface{})
LastLine overwrites last line of stdout without creating a new line
func LastLineThrottled ¶
func LastLineThrottled(format string, v ...interface{})
LastLineThrottled overwrites last line of stdout without creating a new line, throttled
func Printf ¶
func Printf(format string, v ...interface{})
Printf calls Output to print to the standard Arguments are handled in the manner of fmt.Printf.
func PrintfRawLn ¶ added in v0.6.1
func PrintfRawLn(format string, v ...interface{})
PrintfRawLn calls Output to print to the standard stdout (without logger). Arguments are handled in the manner of fmt.Printf.
func Println ¶
func Println(v ...interface{})
Println calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Println.
func PrintlnThrottled ¶
func PrintlnThrottled(format string, v ...interface{})
PrintlnThrottled writes to stdout (via fmt) but is throttled by emitRateMillis; throttled messages are dropped
func SetEmitRateMillis ¶
func SetEmitRateMillis(e int)
SetEmitRateMillis sets the throttle rate for throttle log methods
Types ¶
This section is empty.