VRFS-600 replace console.debug with console.log (except for tests

This commit is contained in:
Brian Smith 2014-03-08 14:52:32 -05:00
parent dd520ee6e6
commit e67b091015
3 changed files with 3 additions and 3 deletions

View File

@ -1066,7 +1066,7 @@
// Clear out the 'timeout' variable.
context.JK.FtueWizard.latencyTimeout = false;
var now = new Date();
context.console.debug("ftueLatencyCallback: " + now);
console.log("ftueLatencyCallback: " + now);
context.JK.FtueWizard.latencyMS = latencyMS;
// Unregister callback:

View File

@ -70,7 +70,7 @@
// but in any other mode, just trust the config coming through gon
JK.websocket_gateway_uri = gon.websocket_gateway_uri
<% end %>
if (console) { console.debug("websocket_gateway_uri:" + JK.websocket_gateway_uri); }
if (console) { console.log("websocket_gateway_uri:" + JK.websocket_gateway_uri); }
// If no trackVolumeObject (when not running in native client)

View File

@ -26,7 +26,7 @@
};
function faderChange(faderId, newValue, dragging) {
console.debug('faderChange fired. ID: ' + faderId +
console.log('faderChange fired. ID: ' + faderId +
', val: ' + newValue + ', dragging: ' + dragging);
}