(format string, args ...interface{})
| 192 | } |
| 193 | |
| 194 | func (logger *Logger) Panicf(format string, args ...interface{}) { |
| 195 | logger.Logf(PanicLevel, format, args...) |
| 196 | } |
| 197 | |
| 198 | // Log will log a message at the level given as parameter. |
| 199 | // Warning: using Log at Panic or Fatal level will not respectively Panic nor Exit. |