X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Ffg_commands.cxx;h=70ceb23b5fd3d2326c18c6fe4c9258461fdf57b7;hb=b587400846111cc4d6713dcdd38b715c97923d5a;hp=f998b5d6c23da013baf767b0df574ccabbcabe90;hpb=3836abcf4b60844d4942e6c5da237fb3a1f93d24;p=flightgear.git diff --git a/src/Main/fg_commands.cxx b/src/Main/fg_commands.cxx index f998b5d6c..70ceb23b5 100644 --- a/src/Main/fg_commands.cxx +++ b/src/Main/fg_commands.cxx @@ -189,7 +189,7 @@ do_exit (const SGPropertyNode * arg) fgSetBool("/sim/signals/exit", true); if (fgGetBool("/sim/startup/save-on-exit")) { -#ifdef _MSC_VER +#ifdef _WIN32 char* envp = ::getenv( "APPDATA" ); if ( envp != NULL ) { SGPath config( envp ); @@ -1596,9 +1596,9 @@ static struct { void fgInitCommands () { - SG_LOG(SG_GENERAL, SG_INFO, "Initializing basic built-in commands:"); + SG_LOG(SG_GENERAL, SG_BULK, "Initializing basic built-in commands:"); for (int i = 0; built_ins[i].name != 0; i++) { - SG_LOG(SG_GENERAL, SG_INFO, " " << built_ins[i].name); + SG_LOG(SG_GENERAL, SG_BULK, " " << built_ins[i].name); globals->get_commands()->addCommand(built_ins[i].name, built_ins[i].command); }