コード例 #1
0
func (writer *parallelExecutionLogger) Comment(comment *parser.Comment) {
	writer.Text(formatter.FormatComment(comment))
}
コード例 #2
0
ファイル: simpleLogger.go プロジェクト: ranjeet-floyd/gauge
func (writer *simpleLogger) Comment(comment *parser.Comment) {
	writer.Text(formatter.FormatComment(comment))
}
コード例 #3
0
func (writer *coloredLogger) Comment(comment *parser.Comment) {
	writer.Write([]byte(formatter.FormatComment(comment)))
}