Merge pull request #187 from mapuri/master

Fix Fatalf() and Fataln() to exit irrespective of log level
This commit is contained in:
Simon Eskildsen 2015-05-26 17:15:44 -04:00
commit 488629fea7
1 changed files with 2 additions and 0 deletions

View File

@ -188,6 +188,7 @@ func (entry *Entry) Fatalf(format string, args ...interface{}) {
if entry.Logger.Level >= FatalLevel {
entry.Fatal(fmt.Sprintf(format, args...))
}
os.Exit(1)
}
func (entry *Entry) Panicf(format string, args ...interface{}) {
@ -234,6 +235,7 @@ func (entry *Entry) Fatalln(args ...interface{}) {
if entry.Logger.Level >= FatalLevel {
entry.Fatal(entry.sprintlnn(args...))
}
os.Exit(1)
}
func (entry *Entry) Panicln(args ...interface{}) {