We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75e5684 commit 2d6f7a4Copy full SHA for 2d6f7a4
1 file changed
pkg/commands/run/summary.go
@@ -93,7 +93,7 @@ func printSummary(logger *logrus.Logger, entries []nukedEntry) {
93
// logrus makes the TextFormatter quote the msg field and escape every
94
// newline to a literal \n. Write straight to the logger's output so the
95
// banner renders with real line breaks while still honouring SetOutput.
96
- fmt.Fprint(logger.Out, b.String())
+ _, _ = fmt.Fprint(logger.Out, b.String())
97
}
98
99
func label(e nukedEntry) string {
0 commit comments