I browsing a log file in notepad++. The file has \r\n wherever a new line should start, but notepad just displays the \r\n characters:
[Header]\r\n2011-04-23 13:14:53,867 [1] DEBUG Themis.Program Enter application
2011-04-23 13:14:57,505 [1] DEBUG Themis.Program Exit application
[Footer]\r\n[Header]\r\n2011-04-23 13:23:15,690 [1] DEBUG Themis.Program Enter application
I'd like it to display it like this:
[Header]
2011-04-23 13:14:53,867 [1] DEBUG Themis.Program Enter application
2011-04-23 13:14:57,505 [1] DEBUG Themis.Program Exit application
[Footer]
[Header]
2011-04-23 13:23:15,690 [1] DEBUG Themis.Program Enter application
Is it possible to do this. Is there maybe another app that can do that?