FatalFn logs a message from a func at level Fatal on the standard logger then the process will exit with status set to 1.
(fn LogFunction)
| 176 | |
| 177 | // FatalFn logs a message from a func at level Fatal on the standard logger then the process will exit with status set to 1. |
| 178 | func FatalFn(fn LogFunction) { |
| 179 | std.FatalFn(fn) |
| 180 | } |
| 181 | |
| 182 | // Tracef logs a message at level Trace on the standard logger. |
| 183 | func Tracef(format string, args ...interface{}) { |