How to Remove console.log from Production in React Native

When you are developing a react native app, it’s usual to use console.log function for debugging purposes. Extensive use of console.log may make your app slow. Hence, it would be good to remove console.log from production due to security issues. There are libraries such as redux logger which uses console.log. Manually removing console.log is not…