Skip to content

Commit

Permalink
removed unsupported number of connections
Browse files Browse the repository at this point in the history
  • Loading branch information
glaslos committed Apr 11, 2018
1 parent 68926df commit 5f84547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system.go
Expand Up @@ -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()
Expand Down

0 comments on commit 5f84547

Please sign in to comment.