Output to console

Hello. I am using Swing in my program but there is something that has been bugging me. I have an error keep occuring which I cannot pin point.

Usually when creating command line apps I would use system.out.print(""); to output certain text at various stages to help me. However when using swing System.out.print(""); does nothing.

How can I output to the console when using swing.

thanks

[412 byte] By [emdiessea] at [2007-11-27 4:56:32]
# 1
Swing is no different than a command line application. The output from System.out.println(...) will go to the console.So using "java YourClass" will cause output from any class to go to the console.If you use "javaw YourClass", then you will not see the output.
camickra at 2007-7-12 10:11:45 > top of Java-index,Desktop,Core GUI APIs...
# 2
I think I must be missing something. I am using java MyClass to run it rather than javaw and I am still not getting any output to the console when using System.out.print("");Thanks
emdiessea at 2007-7-12 10:11:45 > top of Java-index,Desktop,Core GUI APIs...