summaryrefslogtreecommitdiff
path: root/web/main.js
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-11-11 19:50:27 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-11-11 19:50:27 +0200
commit625206f888a796cf40dadbf571fc23bdf3c3379b (patch)
tree2e9a7b5fd161eaacc576c117d7567f0c52ffb49e /web/main.js
parent4ecaa3772604a579b509436179f2e99674d01a8f (diff)
Fixed incorrect stderr function name in javascript
Diffstat (limited to 'web/main.js')
-rw-r--r--web/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/main.js b/web/main.js
index ddd39c0..ff78eb4 100644
--- a/web/main.js
+++ b/web/main.js
@@ -227,7 +227,7 @@ function main() {
window.requestAnimationFrame(analyserNodeCallback);
})
.catch(function(err) {
- console.err('Could not get the microphone');
- console.err(err);
+ console.error('Could not open the microphone stream');
+ console.error(err);
});
}