From aa4f4337cf92d9bca60af585868b22162dc21701 Mon Sep 17 00:00:00 2001 From: Matt Xtaz <49497847+mattxtaz@users.noreply.github.com> Date: Sun, 5 Oct 2025 09:04:27 +0100 Subject: [PATCH] Remove full stop from log line to be consistent with all other log lines --- cmd/rest-server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/rest-server/main.go b/cmd/rest-server/main.go index fe6f04e..76e33f3 100644 --- a/cmd/rest-server/main.go +++ b/cmd/rest-server/main.go @@ -137,7 +137,7 @@ func (app *restServerApp) runRoot(_ *cobra.Command, _ []string) error { if app.Server.ProxyAuthUsername == "" { log.Println("Authentication enabled") } else { - log.Println("Proxy Authentication enabled.") + log.Println("Proxy Authentication enabled") } }