CobaltFusion / DebugViewPP

DebugView++, collects, views, filters your application logs, and highlights information that is important to you!
Boost Software License 1.0
1k stars 143 forks source link

tailing non-ascii XML file not working #261

Closed janwilmans closed 7 years ago

janwilmans commented 7 years ago

Any xml file with binary encoding (UTF-8 or UTF-16) is not read at all, this appears to be because BinaryFileReader::Initialize() is never called?

janwilmans commented 7 years ago

It is now partially working, the first 'batch' of lines in read, but try reading an 10.000 lines UTF16LE file, and you will only see the first N lines. Reason is probably, the LogSources::m_throttledUpdate is never triggered, so the lines end up in the 'buffer' but are never displayed.

janwilmans commented 7 years ago

see also harriv's comment in #228