diff --git a/bigbluebutton-html5/client/compatibility/bbblogger.js b/bigbluebutton-html5/client/compatibility/bbblogger.js
deleted file mode 100644
index d60d6c8ce6e22c42cc5512459f3b1a100fef01a6..0000000000000000000000000000000000000000
--- a/bigbluebutton-html5/client/compatibility/bbblogger.js
+++ /dev/null
@@ -1,28 +0,0 @@
-
-(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);
-