Skip to content

Commit

Permalink
Remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
gdiazlo committed Mar 6, 2019
1 parent 49fca49 commit 430e337
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gossip/monitor/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ func (m Monitor) runTaskDispatcher() {
for {
select {
case <-m.executionTicker.C:
log.Debug("Dispatching tasks...")
go m.dispatchTasks()
case <-m.quitCh:
m.executionTicker.Stop()
Expand Down Expand Up @@ -164,7 +163,7 @@ func (m Monitor) dispatchTasks() {
count := 0
var task Task
var ok bool
defer log.Debugf("%d tasks dispatched", count)

for {
select {
case task, ok = <-m.taskCh:
Expand Down

0 comments on commit 430e337

Please sign in to comment.