Skip to content
This repository has been archived by the owner on Nov 27, 2019. It is now read-only.

Commit

Permalink
fix: Fixed TypeError when running jpm post (#597)
Browse files Browse the repository at this point in the history
The pseudo log object did not define an info method and this command never had test coverage for some reason.
  • Loading branch information
kumar303 authored Oct 10, 2016
1 parent 1bf8438 commit 66be4ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ function log(type) {
}

var jpmConsole = {
info: log.bind(null, "info"),
log: log.bind(null, "info"),
warn: log.bind(null, "warning"),
error: log.bind(null, "error"),
Expand Down

0 comments on commit 66be4ff

Please sign in to comment.