-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
fs.writeSync truncates long lines #1541
Copy link
Copy link
Closed
Labels
duplicateIssues and PRs that are duplicates of other issues or PRs.Issues and PRs that are duplicates of other issues or PRs.fsIssues and PRs related to the fs subsystem / file system.Issues and PRs related to the fs subsystem / file system.
Metadata
Metadata
Assignees
Labels
duplicateIssues and PRs that are duplicates of other issues or PRs.Issues and PRs that are duplicates of other issues or PRs.fsIssues and PRs related to the fs subsystem / file system.Issues and PRs related to the fs subsystem / file system.
iojs 1.8.1
Linux Mint 17, x64, 3.13.0-24
Running this script produces a truncated output. Here is a tail of it
... 77530 77536 77542 77548 77554 77560 7.Replacing
fs.writeSync(process.stdout.fd, buffer, 0, buffer.length, null)withconsole.log(str)changes output. Now the full string is output correctly. Tail is... 9964 99970 99976 99982 99988 99994.