Skip to content

Commit

Permalink
fix: Fix passing logger in action callback
Browse files Browse the repository at this point in the history
Logger instance was not passed to the action callback
  • Loading branch information
mattallty committed Feb 19, 2017
1 parent 7ba5b78 commit 6d35d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class Command extends GetterSetter {
this._program
));
}
return this._action.apply(this, [args, options]);
return this._action.apply(this, [args, options, this._logger]);
}

/**
Expand Down

0 comments on commit 6d35d5f

Please sign in to comment.