func startLogEvents()

in anthos-multi-cloud/customize-logs-fluentbit/test-logger/logger.go [56:61]


func startLogEvents(timeInterval int, header string) {
	for true {
		time.Sleep(time.Duration(timeInterval) * time.Second)
		logInfo(header)
	}
}