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
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.
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
I went with http://mlogcat.tistory.com/ now, since Logcat Offline Viewer quit its job probably due to JAVA update.
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!
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.
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.