func()

in lib/ec2macossystemmonitor/logging.go [84:91]


func (l *Logger) Warnf(format string, v ...interface{}) {
	if l.LogToStdout {
		log.Printf(format, v...)
	}
	if l.LogToSystemLog {
		l.SystemLog.Warning(fmt.Sprintf(format, v...))
	}
}