24

Not sure if anyone had this problem, since I could not look it up anywhere but I cannot see any logs for react native app because the browser console tells me that "Another debugger is already connected" its a warning that keeps looping.

Metro bundler is telling me that I have to see the javascript logs in the browser. I cannot work on my app without debugging it, can anyone help ?

Metro Terminal Chrome Developer Tools

Nata Vacheishvili
  • 387
  • 1
  • 5
  • 18

1 Answers1

44

This happens if you have another tab opened at http://localhost:8081/debugger-ui as you can only have one instance of the debugger running.

You could either go back to the already running tab and see the logs there or close the other tab and refresh this one.

Kevin Amiranoff
  • 13,440
  • 11
  • 59
  • 90
  • I was having another tab opened in a different web browser, when I left it open in only 1 browser, the issue got fixed. Thanks – Wasit Shafi Mar 14 '22 at 14:08
  • in my case a chrome window had been opened automatically from the day before and I didn't even know about it! It might have been minimized the moment it was launched or something like that. so look for any open browser windows too. – Amin Dannak Jul 13 '22 at 04:11