func Info()

in gplog/gplog.go [232:242]


func Info(s string, v ...interface{}) {
	logMutex.Lock()
	defer logMutex.Unlock()
	message := GetLogPrefix("INFO") + fmt.Sprintf(s, v...)
	if logger.fileVerbosity >= LOGINFO {
		_ = logger.logFile.Output(1, message)
	}
	if logger.shellVerbosity >= LOGINFO {
		_ = logger.logStdout.Output(1, message)
	}
}