diff options
author | Jeremy White <jwhite@codeweavers.com> | 2015-06-03 11:22:17 -0500 |
---|---|---|
committer | Jeremy White <jwhite@codeweavers.com> | 2015-06-04 15:41:36 -0500 |
commit | e542bda56fa204631b44d100ffe2cc560113857d (patch) | |
tree | 00d2366b92c8c1e0a232df9eafd0498c6547c3cf /display.js | |
parent | c1e736b083ff47639ecb73ea9be4d14b5002f93f (diff) |
Minor change to error message formating.
Diffstat (limited to 'display.js')
-rw-r--r-- | display.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -469,11 +469,11 @@ SpiceDisplayConn.prototype.process_channel_message = function(msg) if (!this.streams) this.streams = new Array(); if (this.streams[m.id]) - console.log("Stream already exists"); + console.log("Stream " + m.id + " already exists"); else this.streams[m.id] = m; if (m.codec_type != SPICE_VIDEO_CODEC_TYPE_MJPEG) - console.log("Unhandled stream codec: "+m.codec_type); + console.log("Unhandled stream codec: " + m.codec_type); return true; } |