diff --git a/botanjs/src/System/Debug.js b/botanjs/src/System/Debug.js index 018da5c..4820769 100644 --- a/botanjs/src/System/Debug.js +++ b/botanjs/src/System/Debug.js @@ -14,10 +14,10 @@ Log.writeLine( e.name + "\n\t" + e.message + "\n\t" + e.stack, Log.ERROR ); }; - var Info = function(e) + var Info = function() { if( st_info ) - Log.writeLine( e, Log.INFO ); + Log.writeLine( Array.prototype.join.call( arguments, " " ), Log.INFO ); }; var turnOff = function( what )