Skip to content

Instantly share code, notes, and snippets.

@andrewvc
Created November 3, 2010 01:13
Show Gist options
  • Save andrewvc/660648 to your computer and use it in GitHub Desktop.
Save andrewvc/660648 to your computer and use it in GitHub Desktop.
from node-streamlogger.js
for (var logLevel in this.levelList) {
this[logLevel] = (function(logLevel) {
return function (message,callback) {
this.logAtLevel(message, this.levelList[logLevel], callback);
}
})(logLevel);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment