Explorar el Código

ipn: don't log IPN messages that may contain an authkey.

Signed-off-by: David Anderson <[email protected]>
David Anderson hace 4 años
padre
commit
1eabb5b2d9
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      ipn/message.go

+ 2 - 2
ipn/message.go

@@ -260,10 +260,10 @@ func (bc *BackendClient) send(cmd Command) {
 	cmd.Version = version.Long
 	b, err := json.Marshal(cmd)
 	if err != nil {
-		log.Fatalf("Failed json.Marshal(cmd): %v\n%#v\n", err, cmd)
+		log.Fatalf("Failed json.Marshal(cmd): %v\n", err)
 	}
 	if bytes.Contains(b, jsonEscapedZero) {
-		log.Printf("[unexpected] zero byte in BackendClient.send command: %q", b)
+		log.Printf("[unexpected] zero byte in BackendClient.send command")
 	}
 	bc.sendCommandMsg(b)
 }