• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

SimConnect_Text debug output

Messages
105
Hi
something alike:
SimConnect_Text(hSimConnect, SIMCONNECT_TEXT_TYPE_PRINT_WHITE, 10.0f, 0, sizeof("Module Loaded"), (void*)"Module Loaded");
doesn't write anything on the msfs screen. how to debug simconnect?
Thanks
 
The Text() function doesn't work in MSFS2020 (it is listed as deprecated in current online SDK docs).

Print debug info to stdout/stderr (console) or a log file. Or, in a GUI app, you could also use a temporary window/text widget.

HTH,
-Max
 
Last edited:
printf("\nConnected to Flight Simulator!");

that works in the tagged data example but not in my code. Why what could I do wrong? Thanks
 
Hard to say w/out seeing your code or knowing how, specifically, yours doesn't work. Does it compile? Is it a console app or have a console attached? 🤷‍♂️
 
printf("\nConnected to Flight Simulator!");

that works in the tagged data example but not in my code. Why what could I do wrong? Thanks

This works for me:

Code:
fprintf(stderr, "XXX: My debug message here\n");

This prints into the console window. "stderr" will print as an error in the console. (there are also info and warning type messages). "XXX" can be anything - I use it as a designator, to filter out all the other errors from the system.
 
Back
Top