func()

in lib/ec2macosinit/logging.go [57:64]


func (l *Logger) Warn(v ...interface{}) {
	if l.LogToStdout {
		log.Print(v...)
	}
	if l.LogToSystemLog {
		_ = l.SystemLog.Warning(fmt.Sprint(v...))
	}
}