Skip to content

Instantly share code, notes, and snippets.

@xonecas
Created August 19, 2011 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xonecas/1158215 to your computer and use it in GitHub Desktop.
Save xonecas/1158215 to your computer and use it in GitHub Desktop.
node.js debug function
var _i = require('util').inspect;
function debug () {
Array.prototype.forEach.call(arguments, function (arg) {
console.log("DEBUG: "+ _i(arg));
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment