AZ Vasquez
AZ Vasquez
Hi all! I'd like to implement this. I haven't used logview yet. What roadblocks specific to logcat should I anticipate? Alternatively, is this better implemented by extension rather than directly...
For my reference, this is an example of a solution by extension. ```elisp (use-package logview :config (add-to-list 'logview-additional-submodes '("Android" ((format . "TIMESTAMP PID LEVEL: MESSAGE") (timestamp . "AndroidTimestamp")))) (add-to-list 'logview-additional-level-mappings...
Hey @doublep , It seems Android supports different formats for the logs. My example can be reproduced with the `-v threadtime` modifier (which is default). What do you think about...