Skip to content

Commit 4346e34

Browse files
committed
Only log in verbose mode
1 parent 23080ce commit 4346e34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module.exports = {
4646
var promises = [];
4747
var jsFilePaths = fetchFilePaths(distFiles, publicUrl, 'js');
4848
var mapFilePaths = fetchFilePaths(distFiles, distDir, 'map');
49-
log('Uploading sourcemaps to bugsnag');
49+
log('Uploading sourcemaps to bugsnag', { verbose: true });
5050

5151
for (var i = 0; i < mapFilePaths.length; i++) {
5252
var mapFilePath = mapFilePaths[i];
@@ -69,12 +69,12 @@ module.exports = {
6969
}
7070
return RSVP.all(promises)
7171
.then(function() {
72-
log('Finished uploading sourcemaps');
72+
log('Finished uploading sourcemaps', { verbose: true });
7373
});
7474
},
7575

7676
didUpload() {
77-
this.log('Deleting sourcemaps');
77+
this.log('Deleting sourcemaps', { verbose: true });
7878
var deleteSourcemaps = this.readConfig('deleteSourcemaps');
7979
if (deleteSourcemaps) {
8080
var distDir = this.readConfig('distDir');

0 commit comments

Comments
 (0)