I am developing a react-native
mobile application and testing on both Android and iOS simulators at the same time. The thing is when we run npx react-native start
it starts the metro bundler
and then asks for android
or iOS
commands. When we select one of them it starts the app and prints logs for it but when at the same time we start the other it gives logs in the same terminal window. This way I am not able to figure out from which platform the logs are coming.
I want to view both platform logs differently. Is there a way or other methods to print logs separately?