Use error.stack instead of error for console log

Chrome/V8 give you the error name, message and callstack at that
property, where toString() gives you [object NavigatorUserMediaError]

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-06-20 16:12:30 -07:00
parent 98f88607a0
commit 3fbd1ab618
3 changed files with 3 additions and 3 deletions

View file

@ -156,7 +156,7 @@
});
var error;
if ((error = c.validateNumber())) {
console.log(error);
console.log(error.stack);
return;
}