Toggle the debug mode dinamically.

Change the status of the debug mode of artyom dinamically without the initialize function. Remember that if the debug mode of artyom is disabled, the debug console messages will not appear, use artyom.setDebug to change this value.

// Enable debug
artyom.setDebug(true);

// Disable debug
artyom.setDebug();
// or
artyom.setDebug(false);