google-code-export / snaketail-net

Automatically exported from code.google.com/p/snaketail-net
0 stars 1 forks source link

characters in .txt file is truncated if the line contains more than 1001 characters #32

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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 rami.abughazaleh@gmail.com on 13 Mar 2013 at 10:18

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
:-( was very excited to use SnakeTail until encountered this issue.  We have 
lots of lines > 1000 chars.

Original comment by jeffjjen...@gmail.com on 2 Aug 2013 at 3:11