From c2064dc18d91a69fb0a0383a73d21c06748cb019 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 --- libnetwork/ipam/allocator.go | 2 +- libnetwork/sandbox_store.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/libnetwork/ipam/allocator.go b/libnetwork/ipam/allocator.go index 33164bd83a..44811ba89a 100644 --- a/libnetwork/ipam/allocator.go +++ b/libnetwork/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/libnetwork/sandbox_store.go b/libnetwork/sandbox_store.go index 56abbb6424..2a86cbc4cc 100644 --- a/libnetwork/sandbox_store.go +++ b/libnetwork/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,