Merge pull request #3652 from RocketChat/chore.console-error

Chore: Change console.log to console.error on log()
This commit is contained in:
Reinaldo Neto 2022-02-04 15:22:38 -03:00 committed by GitHub
commit f9b94df774
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}
};