/** * Adds a verbose output to the console, so that you can see what's happening in your process. * @module plugins/verboseOutput * @author Rob Taylor - The basic idea * @author Michael Mathews - Wrote the first itteration with me :) */ exports.handlers = { /** * Logging the file name to the console. */ fileBegin: function (data) { console.log(data.filename); }, /** * Logging the doclet object to the console. This will print out a lot of info, * so I suggest only using it for debugging. */ newDoclet: function (data) { // console.log(data); } };