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 @@ -48,7 +48,7 @@ module.exports = {
48
48
var promises = [ ] ;
49
49
var jsFilePaths = fetchFilePaths ( distFiles , publicUrl , 'js' ) ;
50
50
var mapFilePaths = fetchFilePaths ( distFiles , distDir , 'map' ) ;
51
- log ( 'Uploading sourcemaps to bugsnag' ) ;
51
+ log ( 'Uploading sourcemaps to bugsnag' , { verbose : true } ) ;
52
52
53
53
for ( var i = 0 ; i < mapFilePaths . length ; i ++ ) {
54
54
var mapFilePath = mapFilePaths [ i ] ;
@@ -71,12 +71,12 @@ module.exports = {
71
71
}
72
72
return RSVP . all ( promises )
73
73
. then ( function ( ) {
74
- log ( 'Finished uploading sourcemaps' ) ;
74
+ log ( 'Finished uploading sourcemaps' , { verbose : true } ) ;
75
75
} ) ;
76
76
} ,
77
77
78
78
didUpload ( ) {
79
- this . log ( 'Deleting sourcemaps' ) ;
79
+ this . log ( 'Deleting sourcemaps' , { verbose : true } ) ;
80
80
var deleteSourcemaps = this . readConfig ( 'deleteSourcemaps' ) ;
81
81
if ( deleteSourcemaps ) {
82
82
var distDir = this . readConfig ( 'distDir' ) ;
You can’t perform that action at this time.
0 commit comments