From a984464931248a7bcb7c6bdd2172d8419aaf1a65 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 3 Jul 2019 13:53:56 -0400 Subject: [PATCH] fix: drop extra % sign in common.LogVerboseQuiet --- plugins/network/src/triggers/install/install.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/network/src/triggers/install/install.go b/plugins/network/src/triggers/install/install.go index cb4931ef7..6b595c833 100644 --- a/plugins/network/src/triggers/install/install.go +++ b/plugins/network/src/triggers/install/install.go @@ -22,12 +22,12 @@ func main() { continue } if proxy.IsAppProxyEnabled(appName) { - common.LogVerboseQuiet("Setting %s network property 'bind-all-interfaces' to false") + common.LogVerboseQuiet("Setting network property 'bind-all-interfaces' to false") if err := common.PropertyWrite("network", appName, "bind-all-interfaces", "false"); err != nil { common.LogWarn(err.Error()) } } else { - common.LogVerboseQuiet("Setting %s network property 'bind-all-interfaces' to true") + common.LogVerboseQuiet("Setting network property 'bind-all-interfaces' to true") if err := common.PropertyWrite("network", appName, "bind-all-interfaces", "true"); err != nil { common.LogWarn(err.Error()) }