using rest args

This commit is contained in:
斟酌 鵬兄 2016-03-29 03:48:44 +08:00
parent 592888b088
commit 54475422a0
1 changed files with 2 additions and 2 deletions

View File

@ -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 )