func (gl GLogger) Warn(f string, a ...interface{}) { glog.WarningDepth(3, fmt.Sprintf(f, a...)) }
func (Logger) Warningf(format string, args ...interface{}) { glog.WarningDepth(3, fmt.Sprintf(format, args...)) }
// WarningDepth is part of the Logger interface. func (cl *ConsoleLogger) WarningDepth(depth int, s string) { log.WarningDepth(1+depth, s) }
// Warningf is part of the Logger interface func (cl ConsoleLogger) Warningf(format string, v ...interface{}) { log.WarningDepth(2, fmt.Sprintf(format, v...)) }