Skip to content
Snippets Groups Projects
Commit 80eeea2a authored by Tainan Felipe's avatar Tainan Felipe
Browse files

remove bbblogger

parent 0c2866cc
No related branches found
No related tags found
No related merge requests found
(function(window, undefined) {
var BBBLog = {};
BBBLog.critical = function (message, data) {
console.log(message, JSON.stringify(data));
}
BBBLog.error = function (message, data) {
console.log(message, JSON.stringify(data));
}
BBBLog.warning = function (message, data) {
console.log(message, JSON.stringify(data));
}
BBBLog.info = function (message, data) {
console.log(message, JSON.stringify(data));
}
BBBLog.debug = function (message, data) {
console.log(message, JSON.stringify(data));
}
window.BBBLog = BBBLog;
})(this);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment