From 3e0da2a8f0de82e0412d646ae8ef0e925c123fcf Mon Sep 17 00:00:00 2001 From: John Maguire Date: Tue, 18 Jan 2022 11:59:41 -0500 Subject: [PATCH] Fix log formatting in "Rebinding UDP listener" (#55) --- nebula/control.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nebula/control.go b/nebula/control.go index 99e06ee..83e6e43 100644 --- a/nebula/control.go +++ b/nebula/control.go @@ -82,7 +82,7 @@ func (n *Nebula) Stop() { } 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() }