Android desktop log viewer

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-26 10:35:31

问题


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/androidlogcatviewer/wiki/KeyFeature

Download: http://code.google.com/p/androidlogcatviewer/downloads/list

Discuss-group: http://groups.google.com/group/androidlogcatviewer




回答2:


I've tried logview-0.19 - works fine for my 13Mb logs.

Make sure to mark ./logview and ./lib/logview.jar as executable when running in Linux.




回答3:


I found Online LogCat Beautifier to which can colourize given LogCat for easy reading. Really nice tool and it uses JavaScript, which means nothing is stored anywhere!

Update:

The link is no longer accessible, and luckily enough for us, Android Studio now supports pasting the LogCat into its "LogCat" tab (previously "Monitor"). Upon pasting, you'd have the options to search/click like a normal LogCat's log.




回答4:


I use coloredlogcat for viewing logcat logs on the console. You should be able to do the same.

cat logfile | coloredlogcat.py

It should work out of the box. If it doesn't, I'm sure only minor modifications are needed. Have a look at this link coloredlogcat for details.




回答5:


You can use Android Debug Monitor or DDMS without Eclipse.




回答6:


Splinter Log works on MacOS and can do a few things better than DDMS, like grouping tags, resolving pids to package name, etc. https://splinter-log.com




回答7:


click here.

stand alone log tool.

http://androidforums.com/application-announcements/207057-tool-logviewer-android.html




回答8:


I've tweaked log4j Chainsaw V2 and the (VFS)LogFilePatternReceiver to allow Chainsaw to read events from Android log files generated via logcat -v time

Download the latest developer snapshot of Chainsaw (Mac DMG and tarball available): http://people.apache.org/~sdeboy

Save this XML off as a file (after tweaking the fileURL):

<?xml version="1.0" encoding="UTF-8"?>
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="true">
<plugin class="org.apache.log4j.chainsaw.vfs.VFSLogFilePatternReceiver" name="android-log">
    <param name="appendNonMatches" value="true"/>
    <param name="autoReconnect" value="true"/>
    <param name="fileURL" value="file:/path/to/android/log"/>
    <param name="name" value="android-log"/>
    <param name="logFormat" value="TIMESTAMP LEVEL/LOGGER(PROP(PID)):MESSAGE"/> 
    <param name="customLevelDefinitions" value="V=TRACE,D=DEBUG,I=INFO,W=WARN,E=ERROR,F=FATAL,S=OFF"/>
    <param name="promptForUserInfo" value="false"/>
    <param name="tailing" value="true"/>
    <param name="timestampFormat" value="yyyyMMdd HH:mm:ss.SSS"/>
    <param name="waitMillis" value="2000"/>
</plugin>
</log4j:configuration>

And then after starting Chainsaw, select the 'Use a Chainsaw config file' option from the 'File, load Chainsaw configuration' menu, browse to this XML file, select 'always start Chainsaw with this configuration' and press OK.




回答9:


Personally I like TailExpert which I use together with logcatUDP to capture logs from multiple android targets, logcatUDP sends the log over the network to tailexpert where I capture it and view the side by side. But you can also read the logs from file if you like, it's a tail program so it will add logmessages to the view when they arrive. You can filter messages on keywords and use colors to identify certain logmessages. The other thing I like is that in tailexpert you can create columnizers on the fly and easily hide one or more columns or change the column order. The program is packed with features and I recently just started to discover the use of notifications to place bookmarks on the fly and halt the log when a certain logmessages passes by, which makes navigation so much quicker. Just check it out, you can download it here.




回答10:


I went with http://mlogcat.tistory.com/ now, since Logcat Offline Viewer quit its job probably due to JAVA update.




回答11:


I like LogExpert. It has great filtering options and it is pretty fast. So I have created a custom columnizer that parses LogCat logs. It has some improvements to be able to parse my custom logs with method and line. You can download it here.



来源:https://stackoverflow.com/questions/4325073/android-desktop-log-viewer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!