@@ -38,7 +38,7 @@ module.exports = CoreObject.extend({
3838 var manifestPath = options . manifestPath ;
3939 if ( manifestPath ) {
4040 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 } ) ;
4242 return new Promise ( function ( resolve , reject ) {
4343 var params = { Bucket : options . bucket , Key : key } ;
4444 this . _client . getObject ( params , function ( error , data ) {
@@ -49,10 +49,10 @@ module.exports = CoreObject.extend({
4949 }
5050 } . bind ( this ) ) ;
5151 } . 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 } ) ;
5353 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 } ) ;
5656 return Promise . resolve ( filePaths ) ;
5757 } ) ;
5858 } else {
@@ -107,7 +107,7 @@ module.exports = CoreObject.extend({
107107 if ( error ) {
108108 reject ( error ) ;
109109 } else {
110- plugin . log ( '✔ ' + key ) ;
110+ plugin . log ( '✔ ' + key , { verbose : true } ) ;
111111 resolve ( filePath ) ;
112112 }
113113 } ) ;
0 commit comments