From 6ec4d229de2a80360193b1558db64ec37aa55eb1 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 21 Sep 2015 17:47:29 -0400 Subject: [PATCH] glog.Info() -> glog.Infof() --- pkg/util/iptables/iptables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/iptables/iptables.go b/pkg/util/iptables/iptables.go index d314f3df8db..97fb490a45d 100644 --- a/pkg/util/iptables/iptables.go +++ b/pkg/util/iptables/iptables.go @@ -170,7 +170,7 @@ const ( func (runner *runner) connectToFirewallD() { bus, err := runner.dbus.SystemBus() if err != nil { - glog.V(1).Info("Could not connect to D-Bus system bus: %s", err) + glog.V(1).Infof("Could not connect to D-Bus system bus: %s", err) return }