Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Commit

Permalink
Use console.log instead of util.print
Browse files Browse the repository at this point in the history
  • Loading branch information
cbarrick committed Oct 27, 2014
1 parent eecac6d commit b8db54a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/util.js
Expand Up @@ -137,9 +137,9 @@ var fs = require('fs')
}

, defaultLogger = {
info : function (template) { sysUtil.print(renderTemplate(template) + '\n') }
, warn : function (template) { sysUtil.print(renderTemplate(template) + '\n') }
, error : function (template) { sysUtil.print(renderTemplate(template) + '\n') }
info : function (template) { console.log(renderTemplate(template)) }
, warn : function (template) { console.log(renderTemplate(template)) }
, error : function (template) { console.log(renderTemplate(template)) }
}


Expand Down

0 comments on commit b8db54a

Please sign in to comment.