Console Logs not appearing when opening app in new tab

I have a skeleton React app, and I can see console.log statements when I’m in the replit IDE, but I can’t see them when I access the webpage in a new tab. Is this expected? I need to access the app in a new tab in order to connect with MetaMask.

Thanks!

Include

console.log("hello")

in the

function App() {
     console.log("hello")
     return "hello"
1 Like

That will not work since the function execution will stop before console.log is called.

1 Like

Thanks for that @MattDESTROYER

Turns out I had some weird setting on my Chrome browser that was hiding the log messages. Thanks everyone.

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.