func Debug()

in gplog/gplog.go [264:274]


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