Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

How to recover disappeared output ?

WSinc
New Contributor I
304 Views

I am using VS 2015 with IPSXE 2019.

My program generates a LOT of output when I am debugging it  -

If something appeared before and is gone, is there a way to go back and get it ?

scrolling upward does not recover what I need, unfortunately.

 

I have the output window maximized, but there are still too many lines of output

Or maybe there is an easy way to have it stop every 20 lines or so, other than having to

put a bunch of breakpoints in the code, or having to write it to "scratch" file.

any suggestions ?

0 Kudos
3 Replies
Steve_Lionel
Honored Contributor III
304 Views

No, once the output has scrolled out of the window it is gone. However, if it is a console application you can increase the size of the default scrollback buffer.

Click on the Windows Start button, type CMD, and click on the Command Prompt application when it appears. Left click on the C:> icon in the upper left corner and select Defaults.  Click on the Layout tab. Change Screen Buffer SIze > Height to some large number (I have 9001 in mine.) Click OK and then close the window.

If it is a QuickWin application you can change the number of lines in an INITIALSETTINGS function, but be aware that choosing a large number for this will make your application take lots of memory.

0 Kudos
gib
New Contributor II
304 Views

If it is a console program you can run it from the command line and redirect output to a file:

myprogram.exe > output.txt

0 Kudos
jimdempseyatthecove
Honored Contributor III
304 Views

You can also

Open a console window (CMD)

Right-Click on title line
Choose Properties
Set Screen Buffer Size, Height to a large number of lines

Then run your program.
Use the vertical scroll bar to scroll to lines of interest.

If your program has too many lines for you to specify in buffer height, then resort to  > output.txt

Jim Dempsey

0 Kudos
Reply