diff options
Diffstat (limited to 'skate')
-rw-r--r-- | skate/zipkey/batch.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/zipkey/batch.go b/skate/zipkey/batch.go index ac7d462..f1e21fe 100644 --- a/skate/zipkey/batch.go +++ b/skate/zipkey/batch.go @@ -68,7 +68,7 @@ func (b *Batcher) GroupFunc(g *Group) error { oversized := len(g.G0) > maxGroupSize || len(g.G1) > maxGroupSize if len(b.batch) == b.Size || oversized { if oversized { - log.Printf("short circuiting large group (%d/%d)", len(g.G0), len(g.G1)) + log.Printf("short circuiting large group (g0=%d, g1=%d, b=%d)", len(g.G0), len(g.G1), len(b.batch)) } g := make([]*Group, len(b.batch)) copy(g, b.batch) |