Skip to content
Joan edited this page Mar 30, 2014 · 1 revision

BeyondAR uses the class Logger to log the activity, if you want to enable/disable it just use the following code;

// Enable logs.
Logger.DEBUG = true

// Disable logs.
Logger.DEBUG = false

// Disable OpenGL logs.
Logger.DEBUG_OPENGL = false;

// Enable OpenGL logs.
Logger.DEBUG_OPENGL = true;

Here you will find the source of the Logger class

Clone this wiki locally