From 91fddca3f721220abcc56a32d8f8564d67ceb684 Mon Sep 17 00:00:00 2001 From: Piotr Palka Date: Tue, 7 Mar 2023 02:20:46 +0700 Subject: [PATCH] Fix webhook server logging (#2320) Co-authored-by: Yusuke Kuoka Co-authored-by: Bassem Dghaidi <568794+Link-@users.noreply.github.com> --- cmd/githubwebhookserver/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/githubwebhookserver/main.go b/cmd/githubwebhookserver/main.go index 28457720..1245b823 100644 --- a/cmd/githubwebhookserver/main.go +++ b/cmd/githubwebhookserver/main.go @@ -124,7 +124,7 @@ func main() { if watchNamespace == "" { logger.Info("-watch-namespace is empty. HorizontalRunnerAutoscalers in all the namespaces are watched, cached, and considered as scale targets.") } else { - logger.Info("-watch-namespace is %q. Only HorizontalRunnerAutoscalers in %q are watched, cached, and considered as scale targets.") + logger.Info("-watch-namespace is %q. Only HorizontalRunnerAutoscalers in %q are watched, cached, and considered as scale targets.", watchNamespace, watchNamespace) } ctrl.SetLogger(logger)