Skip to content

Instantly share code, notes, and snippets.

@serkanberksoy
Last active August 29, 2015 14:22
Show Gist options
  • Save serkanberksoy/74117ad6efc0e035d291 to your computer and use it in GitHub Desktop.
Save serkanberksoy/74117ad6efc0e035d291 to your computer and use it in GitHub Desktop.
Simple Trace Logger With Commas
// usage logTrace("name", val1, "name2", val2);
function logTrace()
{
var result = "TRACE : "; // you may add milliseconds here
for(var i = 0; i < arguments.length; i++)
{
if(i > 0)
{
result += " - ";
}
result += arguments[i];
}
console.log(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment