1 ['Trace','Debug','Info','Warn','Error','Fatal'].forEach( 2 function(levelString) { 3 this[levelString] = function(message){ 4 console.log(levelString + ":" + message); 5 } 6 } 7 );