Remove stray console.log statemente

This commit is contained in:
Misko Hevery
2011-05-27 15:20:25 -07:00
parent 66f3317bef
commit a23d15ad3a

View File

@@ -942,7 +942,6 @@ function assertArg(arg, name, reason) {
if (!arg) {
var error = new Error("Argument '" + (name||'?') + "' is " +
(reason || "required"));
if (window.console) window.console.log(error.stack);
throw error;
}
}