Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Fix log extra parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdado committed Nov 9, 2016
1 parent fa3992b commit 182ff9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function download(url, dest, cb) {
return response.statusCode >= 200 && response.statusCode < 300;
};

log.http('node-sass install', 'Start downloading binary at', url);
log.http('node-sass install', 'Start downloading binary at' + url);

try {
request(url, downloadOptions(), function(err, response) {
Expand Down Expand Up @@ -108,7 +108,7 @@ function checkAndDownloadBinary() {
return;
}

log.info('node-sass install', 'Binary downloaded and installed at', sass.getBinaryPath());
log.info('node-sass install', 'Binary downloaded and installed at' + sass.getBinaryPath());
});
});
}
Expand Down

0 comments on commit 182ff9d

Please sign in to comment.