From 0f130d306a0e84072d4c19fdaa4ccdb4f9742fba Mon Sep 17 00:00:00 2001 From: Ewen Le Bihan Date: Sun, 14 Apr 2024 18:21:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20Log=20options=20values=20in=20de?= =?UTF-8?q?bug=20log=20when=20running=20an=20exporter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.go b/build.go index b79eefb..41e050b 100644 --- a/build.go +++ b/build.go @@ -445,8 +445,8 @@ func (ctx *RunContext) BuildSome(include string, databaseDirectory string, outpu } for _, exporter := range ctx.Exporters { - ctx.LogDebug("Running exporter %s's after hook", exporter.Name()) options := ctx.Config.Exporters[exporter.Name()] + ctx.LogDebug("Running exporter %s's after hook with options %#v", exporter.Name(), options) exporter.After(ctx, options, &works) }