Commit f449e070 authored by dmazzoni's avatar dmazzoni Committed by Commit bot

Get rid of unnecessary speech logs from ChromeVox

The start and end callback logs were from a long time ago when those were
new and not as stable. Get rid of them now.

BUG=none

Review URL: https://codereview.chromium.org/1062203002

Cr-Commit-Position: refs/heads/master@{#324284}
parent cb1a6ec0
......@@ -42,14 +42,6 @@ cvox.ConsoleTts.prototype.speak = function(textString, queueMode, properties) {
}
logStr += ' "' + textString + '"';
window['console']['log'](logStr);
if (properties && properties['startCallback'] != undefined) {
window.console.log(' using startCallback');
}
if (properties && properties['endCallback'] != undefined) {
window.console.log(' using endCallback');
}
}
return this;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment