console.log browser in android emulator

Viewed 40727

How to see console.log messages of a website using android emulator?

7 Answers

If you are using Android Studio; you can open your Logcat (Alt+6) and filter for: :CONSOLE

Filtering for only :CONSOLE (rather than INFO:CONSOLE) will display all types of console messages (including ERROR, WARN, etc).

Open this url on your chrome

chrome://inspect

Related