Maya C++ API Windows 7 cout not printing

Hi,

i have a problem with a compiled plugin under windows 7. whatever i try: cout or std:: etc i cannot get a print to the output console. it does work under macosx though. am i missing any compile options? i used the maya plugin wizard for the project when i brought it over from macosx.

thanks in advance.

Are you flushing the stream with endl?

cout << “your output” << endl

You can use MGlobal::displayInfo() as well

[QUOTE=TheMaxx;27851]You can use MGlobal::displayInfo() as well[/QUOTE]

thanks, i will try that.
it wasn’t the <<endl. i already had that in.