On 06/02/2015 at 12:29, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R16
Platform: Windows ;
Language(s) : C++ ;
---------
Hello Forum,
Where should I be able to see DebugOutput() output in Visual Studio 2012 when working on R16 projects?
Here is my code in main.cpp:
Bool PluginStart( void )
{
DebugOutput( maxon::OUTPUT_DIAGNOSTIC, "DebugOutput() in PluginStart()" );
return true;
}
Currently, DebugOutput() is not showing up in "Immediate Window" or "Output." I have "g_alloc=debug" as a Debugging Command Argument and I CAN see Memory Leak Detection in the "Immediate Window."
The settings for the VS "Output" window has every option checked.
Also, I have tried "g_console=true" as a Debugging Command Argument, but the console does not not appear.
In R15 projects, the console window opens and I CAN see DebugOutput in it. DebugOutput also appears in the "Immediate Window."
Thanks for your help,
Joe Buck