From 303823e8873934710ab728d368ac66af7af18e76 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Mon, 31 Mar 2014 10:13:24 -0500 Subject: [PATCH] Log each integer --- commands/pilosa-nexter/nexter.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/pilosa-nexter/nexter.go b/commands/pilosa-nexter/nexter.go index 25926f429..7f5df9ed7 100644 --- a/commands/pilosa-nexter/nexter.go +++ b/commands/pilosa-nexter/nexter.go @@ -97,6 +97,7 @@ func (self *Nexter) countloop(ch chan uint64, id int, client *etcd.Client) { log.Println("Allocated", id, start, end) for c := start; c < end; c += 1 { ch <- c + log.Println("Send", id, c) } } }