Trace is used to log tiny steps. Log traces to context if you can!
(msg string)
| 85 | |
| 86 | // Trace is used to log tiny steps. Log traces to context if you can! |
| 87 | func Trace(msg string) { |
| 88 | if fastcheck(TraceLevel) { |
| 89 | log(TraceLevel, msg, nil) |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | // Tracef is used to log tiny steps. Log traces to context if you can! |
| 94 | func Tracef(format string, things ...interface{}) { |