gotch4
gotch4

Reputation: 13269

Any way to debug javascript on Android devices?

Are there any means of debugging JS code, or at least get errors, on Android devices?

Upvotes: 2

Views: 583

Answers (3)

Amandasaurus
Amandasaurus

Reputation: 60709

As it says http://www.technomancy.org/android/javascript-debugging/ you use can use console.log(...) to log messages, and then install a log viewer to view the logs if you filter based on browser (at least on Android 2.2)

Upvotes: 0

mbafford
mbafford

Reputation: 2296

This helps:

http://www.nanaze.com/2009/01/debugging-javascript-on-android.html

There are Firebug like methods (e.g. console.debug, console.info) that will log to logcat, so you can snoop there.

In my testing I'm getting logs to W/browser, not D/WebCore, but the info is being logged there.

Upvotes: 2

Robby Pond
Robby Pond

Reputation: 73484

Error messages should show up in the log with the WebCore tag.

Answered previously.

Upvotes: 0

Related Questions