Skip to content

Commit

Permalink
Remove extra console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
stubailo authored and Sashko Stubailo committed Jan 21, 2015
1 parent ccd666d commit c0640b3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tools/meteor-npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,13 +352,10 @@ meteorNpm._execFileSync = function (file, args, opts) {
var future = new Future;

var child_process = require('child_process');
console.log("About to call NPM: " + file);
child_process.execFile(file, args, opts, function (err, stdout, stderr) {
if (meteorNpm._printNpmCalls)
process.stdout.write(err ? 'failed\n' : 'done\n');

console.log("Inside callback");

future.return({
success: ! err,
stdout: stdout,
Expand Down

0 comments on commit c0640b3

Please sign in to comment.