From 7e81e3c3b6775f08b72004b530461c9ab2a7ae08 Mon Sep 17 00:00:00 2001
From: Christoph Witzko <github@christophwitzko.com>
Date: Wed, 26 Jan 2022 20:08:58 +0100
Subject: [PATCH] feat(hooks-looger): print init values

---
 custom-plugins/main.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/custom-plugins/main.go b/custom-plugins/main.go
index 6c0e9e9..c84db3b 100644
--- a/custom-plugins/main.go
+++ b/custom-plugins/main.go
@@ -13,6 +13,7 @@ type HooksLogger struct {
 }
 
 func (t *HooksLogger) Init(m map[string]string) error {
+	t.logger.Printf("init: %v\n", m)
 	return nil
 }
 
-- 
GitLab