chainsaw

Android desktop log viewer

匿名 (未验证) 提交于 2019-12-03 08:30:34
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: My Android application may save logcat logs to a file. This log file is then sent to developers for analysis. Is there a nice desktop android log viewer application, which would visualize these logs? I wasn't able to find a ready to use tool in Android SDK. Maybe I missed something there? 回答1: Desktop tool for reading android logcat log file, the same as DDMS. The purpose of this tool is to allow developers to quickly locate, analyze, problem-solving, rather than struggling in the log file. Feature: http://code.google.com/p

Monitoring JBoss logfile with Chainsaw v2

北战南征 提交于 2019-12-01 18:29:15
Chainsaw 可以用來監控 JBoss 所使用的 Log4j,透過以下的設定,讓開啟 Chainsaw 的時候自動監聽。 設定 JBoss 首先找到 1 {JBOSS_HOME}server{YOUR_SERVER_FOLDER}confjboss-log4j.xml 開啟之後在 1 <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false"> ... </log4j:configuration> 之間增加一個 appender 1 <appender name="SOCKET" class="org.apache.log4j.net.SocketHubAppender"> <param name="Port" value="8888"/> </appender> 最後底下的 1 <root> <appender-ref ref="CONSOLE"/> <appender-ref ref="FILE"/> </root> 變更為 1 <root> <appender-ref ref="CONSOLE"/> <appender-ref ref="FILE"/> <strong><appender-ref ref="SOCKET"/></strong> </root>