@@ -160,37 +160,37 @@ func (e *Entry) Println(v ...interface{}) {
160160
161161// Fatal logs message as `FATAL` and call to os.Exit(1).
162162func (e * Entry ) Fatal (v ... interface {}) {
163- e .output (levelFatal , fmt .Sprint (v ... ))
163+ e .output (LevelFatal , fmt .Sprint (v ... ))
164164 exit (1 )
165165}
166166
167167// Fatalf logs message as `FATAL` and call to os.Exit(1).
168168func (e * Entry ) Fatalf (format string , v ... interface {}) {
169- e .output (levelFatal , fmt .Sprintf (format , v ... ))
169+ e .output (LevelFatal , fmt .Sprintf (format , v ... ))
170170 exit (1 )
171171}
172172
173173// Fatalln logs message as `FATAL` and call to os.Exit(1).
174174func (e * Entry ) Fatalln (v ... interface {}) {
175- e .output (levelFatal , fmt .Sprint (v ... ))
175+ e .output (LevelFatal , fmt .Sprint (v ... ))
176176 exit (1 )
177177}
178178
179179// Panic logs message as `PANIC` and call to panic().
180180func (e * Entry ) Panic (v ... interface {}) {
181- e .output (levelPanic , fmt .Sprint (v ... ))
181+ e .output (LevelPanic , fmt .Sprint (v ... ))
182182 panic (e )
183183}
184184
185185// Panicf logs message as `PANIC` and call to panic().
186186func (e * Entry ) Panicf (format string , v ... interface {}) {
187- e .output (levelPanic , fmt .Sprintf (format , v ... ))
187+ e .output (LevelPanic , fmt .Sprintf (format , v ... ))
188188 panic (e )
189189}
190190
191191// Panicln logs message as `PANIC` and call to panic().
192192func (e * Entry ) Panicln (v ... interface {}) {
193- e .output (levelPanic , fmt .Sprint (v ... ))
193+ e .output (LevelPanic , fmt .Sprint (v ... ))
194194 panic (e )
195195}
196196
0 commit comments