From 6fcfe31040876e06a70d13c09776c373d99579ec Mon Sep 17 00:00:00 2001 From: Francesco Renzi Date: Mon, 2 Feb 2026 10:42:41 +0100 Subject: [PATCH] log connection --- client.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client.go b/client.go index f46b4b6..5e501eb 100644 --- a/client.go +++ b/client.go @@ -7,6 +7,7 @@ import ( "encoding/json" "fmt" "io" + "log/slog" "maps" "net/http" "net/url" @@ -835,6 +836,8 @@ func (c *Client) getActionsServiceAdminConnection(ctx context.Context, rt *regis return nil, fmt.Errorf("failed to get actions service admin connection: %w", err) } + slog.Info("got admin connection", *adminConnection.ActionsServiceURL) + return adminConnection, nil }