2
0
mirror of synced 2025-02-24 14:48:27 +00:00

Tweak DHT status output

This commit is contained in:
Matt Joiner 2020-02-21 09:47:46 +11:00
parent afe4d8795d
commit 01955ebe80

View File

@ -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)
}