Skip to content

Columnizer for LogExpert. Parses Android logcat logs. It is capable to parse my specific logs with method name and line too. Please read readme for more info.

Notifications You must be signed in to change notification settings

Bhiefer/LogCatColumnizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LogCatColumnizer

Columnizer for LogExpert. Parses Android logcat logs in following format:

1. Saved logs

Logs that were generated by selecting some lines in Eclipse, Android monitor app or Android Studio and saved as log file.

2. Output from 'adb logcat -v time'

Thi parses output from logcat so it can be used instead of logcat in Android Studio that doesn't use columns as logcat in Eclipse. Unfortunately this output contains empty lines between log lines and LogExpert can't process it correctly. I use PowerShell to pre-process the file - remove empty lines.
powershell "adb logcat -v time|where {$_ -ne ''}|Out-File logcat.log"

This command stores adjusted output from logcat to logcat.log file. This file can be directly opened with LogExpert.

Currently only 'time' format of logcat output is supported.

3. Our specific format of log

It is also capable to parse our specific logs that includes method name and line. It has to be in following format:
12-31 17:26:46.268: <level>/<class tag>(<TID>): <log message>[<method>():<line>]

Example:

12-31 17:26:46.268: D/MediaDownloader(3012): Track wasn't changed[add():159]

Support of deobfuscation

Class tag can be logged as full class name (to be able do the deobfuscation). Columnizer shows only the simple name.

Example:

com.company.foo.SomeClass is shown as SomeClass only

About

Columnizer for LogExpert. Parses Android logcat logs. It is capable to parse my specific logs with method name and line too. Please read readme for more info.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages