3
0
Fork 0

Quiet down rebind logs

This commit is contained in:
Nate Brown 2021-06-08 10:10:21 -05:00
parent de43f11ab2
commit cff26eb679
2 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
111MODULE = on 111MODULE = on
export GO111MODULE export GO111MODULE
mobileNebula.aar: *.go mobileNebula.aar: *.go go.sum
gomobile bind -trimpath -v --target=android gomobile bind -trimpath -v --target=android
MobileNebula.framework: *.go MobileNebula.framework: *.go go.sum
gomobile bind -trimpath -v --target=ios gomobile bind -trimpath -v --target=ios
.DEFAULT_GOAL := mobileNebula.aar .DEFAULT_GOAL := mobileNebula.aar

View File

@ -79,7 +79,7 @@ func (n *Nebula) Stop() {
} }
func (n *Nebula) Rebind(reason string) { 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() n.c.RebindUDPServer()
} }