Chore: Change console.log to console.error when logging error

This commit is contained in:
Reinaldo Neto 2022-01-26 00:06:00 -03:00
parent 782bdda2c7
commit 588fdf9650
1 changed files with 1 additions and 1 deletions

View File

@ -77,6 +77,6 @@ export default (e: any): void => {
crashlytics().recordError(e);
}
} else {
console.log(e);
console.error(e);
}
};