Check if console.error is defined

This commit is contained in:
Bowen Ni
2016-11-22 15:06:09 -08:00
committed by vsavkin
parent 2c02d34c05
commit a6c4490fce
2 changed files with 7 additions and 3 deletions

View File

@ -15,7 +15,12 @@ export function stringify(obj: any): string {
export function onError(e: any) {
// TODO: (misko): We seem to not have a stack trace here!
console.error(e, e.stack);
if (console.error) {
console.error(e, e.stack);
} else {
// tslint:disable-next-line:no-console
console.log(e, e.stack);
}
throw e;
}