-
Notifications
You must be signed in to change notification settings - Fork 132
Logs
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