Home | History | Annotate | Download | only in logger

Lines Matching defs:Fatal

25 // In order to better handle resource cleanup after a Fatal error, the Fatal
59 // Fatal* is equivalent to Print* followed by a call to panic that
62 Fatal(v ...interface{})
75 // fatalLog is the type used when Fatal[f|ln]
121 // Recover can be used with defer in a GoRoutine to convert a Fatal panics to
176 s.Fatal(err.Error())
193 // log file and convert any Fatal panics back to os.Exit(1)
195 fatal := false
199 fatal = true
209 } else if fatal {
271 // Fatal is equivalent to Print() followed by a call to panic() that
273 func (s *stdLogger) Fatal(v ...interface{}) {