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()) }