Panicln logs a message at level Panic on the standard logger.
(args ...interface{})
| 261 | |
| 262 | // Panicln logs a message at level Panic on the standard logger. |
| 263 | func Panicln(args ...interface{}) { |
| 264 | std.Panicln(args...) |
| 265 | } |
| 266 | |
| 267 | // Fatalln logs a message at level Fatal on the standard logger then the process will exit with status set to 1. |
| 268 | func Fatalln(args ...interface{}) { |