コード例 #1
0
ファイル: alarm_worker.go プロジェクト: jlyt898/dpipe
func (this *alarmWorker) colorPrintfLn(beep bool, format string, args ...interface{}) {
	msg := fmt.Sprintf(format, args...)
	if beep {
		msg += "\a"
	}
	this.project.Println(als.Colorize(this.conf.colors, msg))
}
コード例 #2
0
ファイル: alarm_worker.go プロジェクト: jlyt898/dpipe
func (this *alarmWorker) blinkColorPrintfLn(format string, args ...interface{}) {
	msg := fmt.Sprintf(format, args...) + "\a"
	this.project.Println(als.Colorize(append(this.conf.colors, "Blink"), msg))
}