func (writer *parallelExecutionLogger) Comment(comment *parser.Comment) {
	writer.Text(formatter.FormatComment(comment))
}
Exemplo n.º 2
0
func (writer *simpleLogger) Comment(comment *parser.Comment) {
	writer.Text(formatter.FormatComment(comment))
}
Exemplo n.º 3
0
func (writer *coloredLogger) Comment(comment *parser.Comment) {
	writer.Write([]byte(formatter.FormatComment(comment)))
}