(fmt string, args ...interface{})
| 205 | } |
| 206 | |
| 207 | func (CBGoUtilsLogger) Errorf(fmt string, args ...interface{}) { |
| 208 | logTo(context.TODO(), LevelError, KeyAll, "CBGoUtilsLogger: "+fmt, args...) |
| 209 | } |
| 210 | |
| 211 | func (CBGoUtilsLogger) Warnf(fmt string, args ...interface{}) { |
| 212 | logTo(context.TODO(), LevelWarn, KeyAll, "CBGoUtilsLogger: "+fmt, args...) |