From 09a0c46bc16ea47014e3e53f7ff9145d2684e6f6 Mon Sep 17 00:00:00 2001 From: "qcqcqc@wsl" <1220204124@zust.edu.cn> Date: Wed, 30 Apr 2025 15:54:24 +0800 Subject: [PATCH] =?UTF-8?q?client=E6=B7=BB=E5=8A=A0log=EF=BC=8C=E8=BE=93?= =?UTF-8?q?=E5=87=BAapi=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/pkg/client/client.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared/pkg/client/client.go b/shared/pkg/client/client.go index c1b90e3..11f543e 100644 --- a/shared/pkg/client/client.go +++ b/shared/pkg/client/client.go @@ -8,6 +8,7 @@ import ( "time" "bash_go_service/shared/pkg/constants" + "bash_go_service/shared/pkg/logger" "github.com/spf13/viper" ) @@ -82,6 +83,8 @@ func NewClient(opts ...ClientOption) *Client { opt(client) } + logger.Debug("client baseURL : %s", client.baseURL) + return client }