snaketail-net
snaketail-net copied to clipboard
characters in .txt file is truncated if the line contains more than 1001 characters
What steps will reproduce the problem?
1. open a file that has more than 1001 characters in one line
(Notepad seems to word wrap at 1024 characters even if word wrap is disabled.)
2. Notice that all characters after the 1001st column are not displayed
What is the expected output?
All characters are displayed
What do you see instead?
All characters after the 1001st column are truncated \ not displayed.
What version of the product are you using?
1.8.2.0
On what operating system?
Windows 7 Enterprise x64 SP1
Original issue reported on code.google.com by [email protected]
on 13 Mar 2013 at 10:18
Would require some extending of the default .NET StreamReader, so when doing a
ReadLine() it will only serve a chopped off version of the actual line. And the
following ReadLine() calls will return the remaining bits.
At the same time I should probably look into fixing the issue with
StreamReader.ReadLine() in Issue #11.
Original comment by sweaty1
on 13 Mar 2013 at 10:39
If you need a quick solution here and now, then either fix the application
writing to the log file, or find a different tail-app.
Original comment by sweaty1
on 13 Mar 2013 at 10:46
:-( was very excited to use SnakeTail until encountered this issue. We have
lots of lines > 1000 chars.
Original comment by [email protected]
on 2 Aug 2013 at 3:11