From 9b2a39b66b3b9b4afb1431755eac5f84f304e799 Mon Sep 17 00:00:00 2001 From: leandrofars Date: Tue, 2 Jul 2024 12:11:37 -0300 Subject: [PATCH] feat(acs): print connection request user and password --- backend/services/acs/internal/config/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/services/acs/internal/config/config.go b/backend/services/acs/internal/config/config.go index 53a3431..e6e6325 100644 --- a/backend/services/acs/internal/config/config.go +++ b/backend/services/acs/internal/config/config.go @@ -73,6 +73,8 @@ func NewConfig() *Config { ctx := context.TODO() + log.Printf("Connection Request User: %q and Password: %q", *connReqUser, *connReqPasswd) + return &Config{ Nats: Nats{ Url: *natsUrl,