Skip to content

Commit

Permalink
make debug logging clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Mar 22, 2022
1 parent 19d6b9e commit 82199bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion html5/js/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ XpraClient.prototype.do_send_hello = function(challenge_response, client_salt) {
});
}
}
this.clog("hello capabilities", this.capabilities);
this.clog("sending hello capabilities", this.capabilities);
// verify:
for (const key in this.capabilities) {
if (key==null) {
Expand Down Expand Up @@ -2124,6 +2124,7 @@ XpraClient.prototype._process_hello = function(packet, ctx) {
//show("process_hello("+packet+")");
ctx.cancel_hello_timer();
const hello = packet[1];
ctx.clog("received hello capabilities", hello);
ctx.server_display = hello["display"] || "";
ctx.server_platform = hello["platform"] || "";
ctx.server_remote_logging = hello["remote-logging.multi-line"];
Expand Down

0 comments on commit 82199bc

Please sign in to comment.