We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99865c1 + 8375a64 commit ee58a76Copy full SHA for ee58a76
1 file changed
pkg/errors/error.go
@@ -26,6 +26,8 @@ func CheckError(err error) {
26
27
// Fatal is a wrapper for log.Fatal() to exit with custom code
28
func Fatal(exitcode int, args ...interface{}) {
29
- log.Fatal(args...)
+ log.Println(args...)
30
os.Exit(exitcode)
31
}
32
+
33
0 commit comments