summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Grunt <pgrunt@redhat.com>2015-09-07 14:20:05 +0200
committerPavel Grunt <pgrunt@redhat.com>2015-09-09 09:04:59 +0200
commitbd5d261a377e51aa18bf282899215b940d29949f (patch)
tree75487a0aaed85f894cb8ecfa6f2b5a12b1ae62f7
parent289a76037111a904ee4de794a8e68d8ec6d88aa7 (diff)
Use name of channel instead of number
For unknown channel types the type number is still used, e.g.: "Channel type unknown-12 not implemented"
-rw-r--r--main.js2
-rw-r--r--spiceconn.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/main.js b/main.js
index 99b2274..be8ad2e 100644
--- a/main.js
+++ b/main.js
@@ -138,10 +138,10 @@ SpiceMainConn.prototype.process_channel_message = function(msg)
this.cursor = new SpicePlaybackConn(conn);
else
{
- this.log_err("Channel type " + chans.channels[i].type + " unknown.");
if (! ("extra_channels" in this))
this.extra_channels = [];
this.extra_channels[i] = new SpiceConn(conn);
+ this.log_err("Channel type " + this.extra_channels[i].channel_type() + " not implemented");
}
}
diff --git a/spiceconn.js b/spiceconn.js
index 70437be..903f3b0 100644
--- a/spiceconn.js
+++ b/spiceconn.js
@@ -342,10 +342,10 @@ SpiceConn.prototype =
{
rc = this.process_channel_message(msg);
if (! rc)
- this.log_warn(this.type + ": Unknown message type " + msg.type + "!");
+ this.log_warn(this.channel_type() + ": Unknown message type " + msg.type + "!");
}
else
- this.log_err(this.type + ": No message handlers for this channel; message " + msg.type);
+ this.log_err(this.channel_type() + ": No message handlers for this channel; message " + msg.type);
}
if (this.msgs_until_ack !== undefined && this.ack_window)