Android desktop log viewer

后端 未结 11 1323
無奈伤痛
無奈伤痛 2020-11-30 01:08

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 andro

相关标签:
11条回答
  • 2020-11-30 01:40

    You can use Android Debug Monitor or DDMS without Eclipse.

    0 讨论(0)
  • 2020-11-30 01:43

    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.

    0 讨论(0)
  • 2020-11-30 01:45

    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.

    0 讨论(0)
  • 2020-11-30 01:46

    click here.

    stand alone log tool.

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

    0 讨论(0)
  • 2020-11-30 01:49

    Desktop tool for reading android logcat log file, the same as DDMS. enter image description here 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

    0 讨论(0)
  • 2020-11-30 01:51

    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.

    0 讨论(0)
提交回复
热议问题