浏览代码

Inspector - removed tests

Julian 8 年之前
父节点
当前提交
4a51143e06
共有 1 个文件被更改,包括 10 次插入9 次删除
  1. 10 9
      inspector/src/tabs/ConsoleTab.ts

+ 10 - 9
inspector/src/tabs/ConsoleTab.ts

@@ -62,15 +62,16 @@ module INSPECTOR {
                 this._bjsPanelContent.innerHTML += entry;
             };
 
-            console.log("This is a console.log message");
-            console.log("That's right, console.log calls are hooked to be written in this window");
-            console.log("Object are also stringify-ed", {width:10, height:30, shape:'rectangular'});
-            console.warn("This is a console.warn message");
-            console.error("This is a console.error message");
-
-            BABYLON.Tools.Log("This is a message");
-            BABYLON.Tools.Warn("This is a warning");
-            BABYLON.Tools.Error("This is a error");
+            // Testing
+            // console.log("This is a console.log message");
+            // console.log("That's right, console.log calls are hooked to be written in this window");
+            // console.log("Object are also stringify-ed", {width:10, height:30, shape:'rectangular'});
+            // console.warn("This is a console.warn message");
+            // console.error("This is a console.error message");
+
+            // BABYLON.Tools.Log("This is a message");
+            // BABYLON.Tools.Warn("This is a warning");
+            // BABYLON.Tools.Error("This is a error");
 
         }