diff options
Diffstat (limited to 'cmd/podman/service.go')
-rw-r--r-- | cmd/podman/service.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/podman/service.go b/cmd/podman/service.go index 41ec499a1..0280b01a4 100644 --- a/cmd/podman/service.go +++ b/cmd/podman/service.go @@ -155,9 +155,7 @@ func runREST(r *libpod.Runtime, uri string, timeout time.Duration) error { } }() - err = server.Serve() - logrus.Debugf("%d/%d Active connections/Total connections\n", server.ActiveConnections, server.TotalConnections) - return err + return server.Serve() } func runVarlink(r *libpod.Runtime, uri string, timeout time.Duration, c *cliconfig.ServiceValues) error { |