summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy White <jwhite@codeweavers.com>2016-12-15 10:43:22 -0600
committerJeremy White <jwhite@codeweavers.com>2016-12-15 10:45:58 -0600
commita770272e7d59ceb8ee25e209a622ac04b68eac9d (patch)
treed896291558f46784f1decaea3c25f6f0106d23fd
parentb3a3a20d152ed3522210fa9b7edbe4c73cde33e1 (diff)
Include the codec type in the stream creation message.
-rw-r--r--display.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/display.js b/display.js
index 788fcc6..40a809e 100644
--- a/display.js
+++ b/display.js
@@ -535,7 +535,7 @@ SpiceDisplayConn.prototype.process_channel_message = function(msg)
if (msg.type == SPICE_MSG_DISPLAY_STREAM_CREATE)
{
var m = new SpiceMsgDisplayStreamCreate(msg.data);
- STREAM_DEBUG > 0 && console.log(this.type + ": MsgStreamCreate id" + m.id +
+ STREAM_DEBUG > 0 && console.log(this.type + ": MsgStreamCreate id" + m.id + "; type " + m.codec_type +
"; width " + m.stream_width + "; height " + m.stream_height +
"; left " + m.dest.left + "; top " + m.dest.top
);