LogcatLogFormatter
A LogFormatter that mimics the Android Logcat output style using println().
Depending on configuration:
If time is true, logs are formatted as:
<date> <time> <pid> <level> <domain>: <message>Content copied to clipboard
Example: 10-05 15:30:12.451 1234 D MyApp: A debug message
If time is false, logs are formatted as:
<level>/<domain>(<pid>): <message>Content copied to clipboard
Example: D/MyApp(1234): A debug message
Parameters
time
Whether to include timestamps in the log output. Default is true.