Skip to content

Commit

Permalink
fix(help): use console.log for help() instead of custom logger (#38)
Browse files Browse the repository at this point in the history
Fixes #34
  • Loading branch information
mattallty authored Mar 26, 2017
1 parent 4f723a9 commit e00932b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Help {

help += "\n\n " + this._getGlobalOptions();

return this._program.logger().info(help + "\n");
return console.log(help + "\n");
}

_getCommands() {
Expand Down

0 comments on commit e00932b

Please sign in to comment.