File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ module.exports = {
46
46
var promises = [ ] ;
47
47
var jsFilePaths = fetchFilePaths ( distFiles , publicUrl , 'js' ) ;
48
48
var mapFilePaths = fetchFilePaths ( distFiles , distDir , 'map' ) ;
49
- log ( 'Uploading sourcemaps to bugsnag' ) ;
49
+ log ( 'Uploading sourcemaps to bugsnag' , { verbose : true } ) ;
50
50
51
51
for ( var i = 0 ; i < mapFilePaths . length ; i ++ ) {
52
52
var mapFilePath = mapFilePaths [ i ] ;
@@ -69,12 +69,12 @@ module.exports = {
69
69
}
70
70
return RSVP . all ( promises )
71
71
. then ( function ( ) {
72
- log ( 'Finished uploading sourcemaps' ) ;
72
+ log ( 'Finished uploading sourcemaps' , { verbose : true } ) ;
73
73
} ) ;
74
74
} ,
75
75
76
76
didUpload ( ) {
77
- this . log ( 'Deleting sourcemaps' ) ;
77
+ this . log ( 'Deleting sourcemaps' , { verbose : true } ) ;
78
78
var deleteSourcemaps = this . readConfig ( 'deleteSourcemaps' ) ;
79
79
if ( deleteSourcemaps ) {
80
80
var distDir = this . readConfig ( 'distDir' ) ;
You can’t perform that action at this time.
0 commit comments