Chore: Change console.log to console.error when logging error
This commit is contained in:
parent
782bdda2c7
commit
588fdf9650
|
@ -77,6 +77,6 @@ export default (e: any): void => {
|
||||||
crashlytics().recordError(e);
|
crashlytics().recordError(e);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log(e);
|
console.error(e);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue