How do you hide the warnings in React Native ?
Update: React Native 0.63+
import { LogBox } from 'react-native';
LogBox.ignoreLogs(['Warning: ...']); // Ignore log notification by message
LogBox.ignoreAllLogs();//Ignore all log notifications
to ignore all log notifications
Comments
Post a Comment