Remove full stop from log line to be consistent with all other log lines

This commit is contained in:
Matt Xtaz 2025-12-06 19:16:00 +00:00
parent 654fa16cb2
commit 35db2868d0

View file

@ -137,7 +137,7 @@ func (app *restServerApp) runRoot(_ *cobra.Command, _ []string) error {
if app.Server.ProxyAuthUsername == "" { if app.Server.ProxyAuthUsername == "" {
log.Println("Authentication enabled") log.Println("Authentication enabled")
} else { } else {
log.Println("Proxy Authentication enabled.") log.Println("Proxy Authentication enabled")
} }
} }