aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/fmt/fmt.go
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/fmt/fmt.go')
-rw-r--r--tpl/fmt/fmt.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tpl/fmt/fmt.go b/tpl/fmt/fmt.go
index e9c18360a..264cb1435 100644
--- a/tpl/fmt/fmt.go
+++ b/tpl/fmt/fmt.go
@@ -30,8 +30,9 @@ func New(d *deps.Deps) *Namespace {
logger: d.Log,
}
- d.BuildStartListeners.Add(func() {
+ d.BuildStartListeners.Add(func(...any) bool {
ns.logger.Reset()
+ return false
})
return ns