From 588fdf9650a271e3e8f13a03e91445cc2526a7b9 Mon Sep 17 00:00:00 2001 From: Reinaldo Neto Date: Wed, 26 Jan 2022 00:06:00 -0300 Subject: [PATCH] Chore: Change console.log to console.error when logging error --- app/utils/log/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/log/index.ts b/app/utils/log/index.ts index d52bd0e94..bebbf147a 100644 --- a/app/utils/log/index.ts +++ b/app/utils/log/index.ts @@ -77,6 +77,6 @@ export default (e: any): void => { crashlytics().recordError(e); } } else { - console.log(e); + console.error(e); } };