chore(doc-gen): log comments as silly() rather than info()

This commit is contained in:
Peter Bacon Darwin 2015-05-07 10:25:41 +01:00
parent e138add584
commit c509057f65
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ module.exports = function AttachCommentTreeVisitor(ParseTreeVisitor, log) {
// Only store the comment if it is JSDOC style (e.g. /** some comment */)
if (/^\/\*\*([\w\W]*)\*\/$/.test(commentText)) {
log.info('comment: ' + this.currentComment.range.start.line + ' - ' +
log.silly('comment: ' + this.currentComment.range.start.line + ' - ' +
this.currentComment.range.end.line + ' : ' +
commentText);