Skip to content

Debugging

David Reed edited this page Jan 11, 2023 · 1 revision

JavaScript

By default, debug builds will allow you to use the devtools shortcut. You can manually enable this shortcut by going to the client settings and toggling the devtools switch.

Keyboard shortcut: CTRL + SHIFT + I

Client

By default, debug builds of the client will open a log windows allowing you to easily view debug information. You can locate the logs in the client folder. Logs outputted to the console window aren't saved.

#include "./Log.h"


// ...

clog::debug << "Test" << clog::endl;
Clone this wiki locally