@@ -38,7 +38,7 @@ module.exports = CoreObject.extend({
38
38
var manifestPath = options . manifestPath ;
39
39
if ( manifestPath ) {
40
40
var key = path . join ( prefix , manifestPath ) ;
41
- plugin . log ( 'Downloading manifest for differential deploy from `' + key + '`...' ) ;
41
+ plugin . log ( 'Downloading manifest for differential deploy from `' + key + '`...' , { verbose : true } ) ;
42
42
return new Promise ( function ( resolve , reject ) {
43
43
var params = { Bucket : options . bucket , Key : key } ;
44
44
this . _client . getObject ( params , function ( error , data ) {
@@ -49,10 +49,10 @@ module.exports = CoreObject.extend({
49
49
}
50
50
} . bind ( this ) ) ;
51
51
} . bind ( this ) ) . then ( function ( manifestEntries ) {
52
- plugin . log ( "Manifest found. Differential deploy will be applied." ) ;
52
+ plugin . log ( "Manifest found. Differential deploy will be applied." , { verbose : true } ) ;
53
53
return _ . difference ( filePaths , manifestEntries ) ;
54
- } ) . catch ( function ( reason ) {
55
- plugin . log ( "Manifest not found. Disabling differential deploy." , { color : 'yellow' } ) ;
54
+ } ) . catch ( function ( /* reason */ ) {
55
+ plugin . log ( "Manifest not found. Disabling differential deploy." , { color : 'yellow' , verbose : true } ) ;
56
56
return Promise . resolve ( filePaths ) ;
57
57
} ) ;
58
58
} else {
@@ -107,7 +107,7 @@ module.exports = CoreObject.extend({
107
107
if ( error ) {
108
108
reject ( error ) ;
109
109
} else {
110
- plugin . log ( '✔ ' + key ) ;
110
+ plugin . log ( '✔ ' + key , { verbose : true } ) ;
111
111
resolve ( filePath ) ;
112
112
}
113
113
} ) ;
0 commit comments