From 01955ebe80cb2d00f791af7f2a930576dfebe827 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 21 Feb 2020 09:47:46 +1100 Subject: [PATCH] Tweak DHT status output --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index e5dfa045..f26d94bd 100644 --- a/client.go +++ b/client.go @@ -103,7 +103,7 @@ func (cl *Client) LocalPort() (port int) { func writeDhtServerStatus(w io.Writer, s DhtServer) { dhtStats := s.Stats() - fmt.Fprintf(w, "\tServer ID: %x\n", s.ID()) + fmt.Fprintf(w, " ID: %x\n", s.ID()) spew.Fdump(w, dhtStats) } -- 2.48.1