Debugging

Revision as of 03:45, 26 July 2022 by Admin (talk | contribs) (Created page with "There are mechanisms intended to help debug the game. ==Printing to the console== The game has an integrated function which you can use to debug output <syntaxhighlight lang="javascript"> GameConsole.print("String", 1); </syntaxhighlight> Passing the 1 as a parameter, allows you to see the output, when you press F1, while the game is open. ==Setting Debug Log Levels== The Commander_Wars.ini file includes options to output more debug data into the game's console. By...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

There are mechanisms intended to help debug the game.

Printing to the console

The game has an integrated function which you can use to debug output

GameConsole.print("String", 1);

Passing the 1 as a parameter, allows you to see the output, when you press F1, while the game is open.

Setting Debug Log Levels

The Commander_Wars.ini file includes options to output more debug data into the game's console. By setting LogActions to true, you can get more detailed information about the running functions in the game.