From f5675552ed5a4535318a3b52d90b2cc4392d6db7 Mon Sep 17 00:00:00 2001 From: bbernays Date: Wed, 21 Feb 2024 10:29:53 -0600 Subject: [PATCH] Update plugin.go --- plugin/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/plugin.go b/plugin/plugin.go index 702ca83ad6..2c60f11107 100644 --- a/plugin/plugin.go +++ b/plugin/plugin.go @@ -179,7 +179,7 @@ func (p *Plugin) Targets() []BuildTarget { } func (p *Plugin) SetLogger(logger zerolog.Logger) { - p.logger = logger.With().Str("module", p.name+"-src").Logger() + p.logger = logger.With().Str("module", p.name+"-"+string(p.Kind())).Logger() } func (p *Plugin) Tables(ctx context.Context, options TableOptions) (schema.Tables, error) {