0

I'm developing an Android application and need to include error messages I encountered / resolved in the documentation.

Is there a method to print logcat output as they appear in the logcat window with the highlighting, I can save the output but it is saved to a raw text file

Any suggestions short of print screening the console ?

Thanks

Mogsdad
  • 42,835
  • 20
  • 145
  • 262
Luke
  • 3,266
  • 4
  • 37
  • 59
  • 1
    What operating system are you using? Also, are you using logcat from an IDE (such as Eclipse) or directly from the command line? – Frxstrem Jan 21 '12 at 00:32
  • Windows 7, Logcat from inside Eclipse which is why I thought print screening would be a fall back if there isn't a suitable method. – Luke Jan 21 '12 at 00:47

1 Answers1

1

Writing a script to convert the plain text into HTML with your desired styling would seem to be fairly easy.

CommonsWare
  • 954,112
  • 185
  • 2,315
  • 2,367
  • Interesting idea. I was hoping for an existing solution but I suppose I could script one. – Luke Jan 21 '12 at 01:16
  • Googlize for coloredlogcat. That could be a good start since it should not be too difficult to replace console tag by some html formatting – Renaud Jan 21 '12 at 08:35