I am using samsung galaxy s2 version 2.3.3, i open a web page in android default web browser.
In the Page i put console.log("some info") to debug the page, but i am unable to see the console.log output in my device.Please help me in this.Thanks in advance.
I am using samsung galaxy s2 version 2.3.3, i open a web page in android default web browser.
In the Page i put console.log("some info") to debug the page, but i am unable to see the console.log output in my device.Please help me in this.Thanks in advance.
This solution appears to no longer be functional as the web tool has not been maintained over the years.
Try using JSConsole.. It's a remote debugger for JavaScript. The setup is basically just injecting a <script>
tag in your page. Once connected you can read all the console.log
calls from the remote page on JSConsole, as well as execute mands on the client.
:listen
.<script src="http://jsconsole./remote.js?..."></script>
.console.log
calls will be forwarded to the JSConsole. window.There are more details plus a couple of useful videos on the Remote Debugging Page.
In Two ways we can see console.log messages
Method 1:
Use WEINRE remote WEb Inspector in REmote. it is a nodejs package. Steps to install WEINRE.
npm install -g weinre
(for
MACsudo npm install -g weinre
)weinre --boundHost -all- --httpPort 8082
, here
8082 is port number where WEINRE is launched.<script
src="http://xx.xx.xx.xx:8082/target/target-script-min.js#weinredemo"></script>
xx.xx.xx.xx
is the IP of your machine.weinredemo
is the ID for your page and you can use any of our own.http://localhost:8082/client/#weinredemo
Method 2: