Fatal logs a message at level Fatal on the standard logger then the process will exit with status set to 1.
(args ...interface{})
| 131 | |
| 132 | // Fatal logs a message at level Fatal on the standard logger then the process will exit with status set to 1. |
| 133 | func Fatal(args ...interface{}) { |
| 134 | std.Fatal(args...) |
| 135 | } |
| 136 | |
| 137 | // TraceFn logs a message from a func at level Trace on the standard logger. |
| 138 | func TraceFn(fn LogFunction) { |