I was asking what package the IConsole class was in. What import statement do you use to be able to use the IConsole class? Were is the class file located?
If you want to write the lines written using the IConsole class's methods, you should read the API doc for that class to see if it has any useful methods for writing those lines to a file.
For example the System.out object in Java SE has methods that allow the code to intercept what is written with calls to System.out.println() so it can be written to a disk file.
Bob Matthews wrote:When I click on my strategy name tag at the bottom of the platform screen I see only a few lines from my strategy output (being the latest output)
What do I need to do, to capture ALL output ?
So your "strategy name tag" only shows you the last few lines of the output? Sounds like it might be configured to discard old output after some point. You could look at its configuration and see if there's something there which you could do differently.
void setMaxMessages(int maxNumber)
Sets the maximum number of messages. Unrestricted by default.
Parameters:
maxNumber - maximum number of messages in Messages table. Passing -1 makes it unrestricted.