From bbf8112995f613d15d63b12b348359774ab654e8 Mon Sep 17 00:00:00 2001 From: Stavros Date: Tue, 7 Oct 2025 15:41:39 +0300 Subject: [PATCH] refactor: touch up loggin in healthcheck command --- cmd/healthcheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/healthcheck.go b/cmd/healthcheck.go index 7589afc..ca2bd83 100644 --- a/cmd/healthcheck.go +++ b/cmd/healthcheck.go @@ -72,7 +72,7 @@ func (c *healthcheckCmd) run(cmd *cobra.Command, args []string) { appUrl = args[0] } - log.Info().Str("appUrl", appUrl).Msg("Performing health check") + log.Info().Str("app_url", appUrl).Msg("Performing health check") client := http.Client{}