From 1cdfac15beb015c68f9abca7a71b5c614fdb852a Mon Sep 17 00:00:00 2001 From: Alessandro Boch Date: Fri, 9 Oct 2015 12:43:11 -0700 Subject: [PATCH] Reduce logging verbosity in allocator Signed-off-by: Alessandro Boch --- ipam/allocator.go | 2 +- sandbox_store.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ipam/allocator.go b/ipam/allocator.go index 33164bd..44811ba 100644 --- a/ipam/allocator.go +++ b/ipam/allocator.go @@ -239,7 +239,7 @@ func (a *Allocator) parsePoolRequest(addressSpace, pool, subPool string, v6 bool } func (a *Allocator) insertBitMask(key SubnetKey, pool *net.IPNet) error { - log.Debugf("Inserting bitmask (%s, %s)", key.String(), pool.String()) + //log.Debugf("Inserting bitmask (%s, %s)", key.String(), pool.String()) store := a.getStore(key.AddressSpace) if store == nil { diff --git a/sandbox_store.go b/sandbox_store.go index 56abbb6..2a86cbc 100644 --- a/sandbox_store.go +++ b/sandbox_store.go @@ -168,7 +168,6 @@ func (c *controller) sandboxCleanup() { for _, kvo := range kvol { sbs := kvo.(*sbState) - logrus.Printf("sandboxcleanup sbs = %+v", sbs) sb := &sandbox{ id: sbs.ID, controller: sbs.c,