From cff26eb679cc6bbd1f1ab966dc35da60b0fea4ec Mon Sep 17 00:00:00 2001 From: Nate Brown Date: Tue, 8 Jun 2021 10:10:21 -0500 Subject: [PATCH] Quiet down rebind logs --- nebula/Makefile | 4 ++-- nebula/control.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nebula/Makefile b/nebula/Makefile index a643127..30c54a6 100644 --- a/nebula/Makefile +++ b/nebula/Makefile @@ -1,10 +1,10 @@ 111MODULE = on export GO111MODULE -mobileNebula.aar: *.go +mobileNebula.aar: *.go go.sum gomobile bind -trimpath -v --target=android -MobileNebula.framework: *.go +MobileNebula.framework: *.go go.sum gomobile bind -trimpath -v --target=ios .DEFAULT_GOAL := mobileNebula.aar diff --git a/nebula/control.go b/nebula/control.go index d803375..db62708 100644 --- a/nebula/control.go +++ b/nebula/control.go @@ -79,7 +79,7 @@ func (n *Nebula) Stop() { } func (n *Nebula) Rebind(reason string) { - n.l.Infof("Rebinding UDP listener and updating lighthouses due to %s", reason) + n.l.Debugln("Rebinding UDP listener and updating lighthouses due to %s", reason) n.c.RebindUDPServer() }