3
0
Fork 0

Fix log formatting in "Rebinding UDP listener" (#55)

This commit is contained in:
John Maguire 2022-01-18 11:59:41 -05:00 committed by GitHub
parent fec77613bf
commit 3e0da2a8f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ func (n *Nebula) Stop() {
} }
func (n *Nebula) Rebind(reason string) { func (n *Nebula) Rebind(reason string) {
n.l.Debugln("Rebinding UDP listener and updating lighthouses due to %s", reason) n.l.Debugf("Rebinding UDP listener and updating lighthouses due to %s", reason)
n.c.RebindUDPServer() n.c.RebindUDPServer()
} }