Roudler Debuger is a tool which save reports about browser build-in console tool.
To configure Roudler Debuger you can change debuger and debugerPriority option in RoudlerConfig object.
debuger = true | false - this option disable or enable Roudler Debuger
debugerPriority = 0-4 - this option set priority of Roudler Debuger reporting. 0 - means all logs type with data processing informations, 1 - means console.info, console.log and another, 2 - means all types without console.info, 3- means only warning and errors, 4- means only errors.
console.log(arg, [arg]) - log to console with debuger reporting.
console.info(arg, [arg]) - info to console with debuger reporting.
console.warn(arg, [arg]) - warn to console with debuger reporting.
console.error(arg, [arg]); - warn to consle with debuger reporting.
console.logr(arg, [arg]) - log to console without debuger reporting.
console.infor() - info to console without debuger reporting.
console.warnr() - warn to console without debuger reporting.
console.errorr(arg, [arg]) - error to console without debuger reporting.
Roudler.console.clear(filter = all | last | normal | warn | info | error | new Array()) - Clear console entries with specific log types.
Roudler.console.get(filter = all | last | normal | warn | info | error | new Array()) - Get console entries with specific log types.
Roudler.console.print(filter = all | last | normal | warn | info | error | new Array()) - Print into console history of specific log types.