func()

in lib/ec2macossystemmonitor/logging.go [89:96]


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...))
	}
}