Replace console.error with warn

Error creates a full screen error dialog in react native which is annoying.
This commit is contained in:
Sverre Johansen 2019-02-13 14:40:14 +01:00 коммит произвёл GitHub
Родитель 99059ad012
Коммит 0de4785fd5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -18,9 +18,9 @@ class WarningComponent extends React.Component<any> {
const differences = deepSubstract(prevProps, this.props);
if (differences === null) {
console.error("🚨 WASTED RENDER 🚨, props changing reference for nothing: ", shallowSubstract(prevProps, this.props));
console.warn("🚨 WASTED RENDER 🚨, props changing reference for nothing: ", shallowSubstract(prevProps, this.props));
} else if (isOnlyFunctions(differences)) {
console.error("🚨 WASTED RENDER 🚨, props changed because of function reference(s) changing: ", differences);
console.warn("🚨 WASTED RENDER 🚨, props changed because of function reference(s) changing: ", differences);
}
}
}