We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc2c38f commit 7d9338aCopy full SHA for 7d9338a
src/arduino.cc/builder/i18n/i18n.go
@@ -61,6 +61,7 @@ func (s NoopLogger) Name() string {
61
type HumanLogger struct{}
62
63
func (s HumanLogger) Fprintln(w io.Writer, level string, format string, a ...interface{}) {
64
+ format = "[" + level + "] " + format
65
fmt.Fprintln(w, Format(format, a...))
66
}
67
0 commit comments