如何调试cordova插件并使用" android.util.log"进行日志记录

时间:2014-12-17 21:27:14

标签: java android cordova logging plugins

我正在开发一个使用插件的cordova应用程序。

其中一个使用来自android.util.log的方法Log.v。

问题:

1) where does the plugin flush this logs? And how I can check them?

2) it's possibile to print something to console at runtime from the "java side"?  

I can only debug the javascript part through "crome://inspect" on Google Chrome
or 
via adb running the command "adb logcat CordovaApp:D *:S"

重要提示: 我正在使用netbeans 7.4而且我无法从netbeans启动run命令,因为它没有考虑root config.xml文件,导致重写我的设置以及(不知道为什么),该过程需要由于未检测到的插件(安装了peraphs)而运行的时间太长,并且每次从git获取时都会重新下载它们。

谢谢

1 个答案:

答案 0 :(得分:7)

您应该能够在logcat

上查看本机日志(Log.v,System.out)

您可以在webview控制台上通过插件

进行打印
webView.loadUrl("javascript:console.log('hello');");