Fatal terminates execution using fatal exit code.
(format string, a ...interface{})
| 19 | |
| 20 | // Fatal terminates execution using fatal exit code. |
| 21 | func Fatal(format string, a ...interface{}) { |
| 22 | flog.Errorf(format, a...) |
| 23 | os.Exit(CodeFatal) |
| 24 | } |
| 25 | |
| 26 | // Error terminates execution using unsuccessful execution exit code. |
| 27 | func Error(format string, a ...interface{}) { |
no test coverage detected