PanicFn logs a message from a func at level Panic on the standard logger.
(fn LogFunction)
| 171 | |
| 172 | // PanicFn logs a message from a func at level Panic on the standard logger. |
| 173 | func PanicFn(fn LogFunction) { |
| 174 | std.PanicFn(fn) |
| 175 | } |
| 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) { |