• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How to increase cmd buffer size?

Red Squirrel

No Lifer
I'm trying to debug a program that is causing an error but I need to be able to read all the output. Problem is the cmd bufer only goes up to 999 * 999, that's not enough. Is there a way around this limitation?

I could write the output to file but looking for possibly another alternative.
 
Originally posted by: Nothinman
Or just put all of the debugging output into a file instead of stdout.

We're talking billions of lines here (I only need the top maybe, 200k, if an error occurs). To write all that to file would take too long. The program load alone takes about 10 minutes if output all the debug info to screen. (it's a few secs out of debug mode, mind you).

I'll take a look at the Console replacement, looks promising and considering I deal a lot with the command line think it will be very useful.
 
Back
Top