From 5f845479f9786024386ed31affa839e7c0da0b27 Mon Sep 17 00:00:00 2001 From: Lukas Rist Date: Wed, 11 Apr 2018 09:19:29 +0200 Subject: [PATCH] removed unsupported number of connections --- system.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system.go b/system.go index 70d331c..33a1503 100644 --- a/system.go +++ b/system.go @@ -31,8 +31,8 @@ func (g *Glutton) startMonitor(quit chan struct{}) { case <-ticker.C: openFiles := countOpenFiles() runningRoutines := countRunningRoutines() - g.logger.Info(fmt.Sprintf("[system ] running Go routines: %d and open files: %d, connections: %d", - openFiles, runningRoutines, g.processor.Connections.Length())) + g.logger.Info(fmt.Sprintf("[system ] running Go routines: %d and open files: %d", + openFiles, runningRoutines)) case <-quit: g.logger.Info("[system ] Monitoring stopped..") ticker.Stop()