Expo doesn't show Logs

Viewed 3420

When I run my react-native app I can't see my logs. The device where I started it doesn't even show up in the list. I tested it with iOS, android and an simulator. Any suggestions?

I use the following expo versions:

"expo": "^40.0.0",

"expo-cli": "3.28.6",

expo

3 Answers

You can override console functions like console.log and that can completely change the way they work, it can also intend to do nothing and just disable the log in these cases just remove the libraries you installed recently or restore your project to the point the console worked then find the problem and fix it.

In my case I was running the app on an emulator on my local machine. What solved it for me was changing the connection setting from LAN to LOCAL. Either change it through the expo developer tools or just run expo start --localhost instead of expo start

Related