@@ -34,7 +34,7 @@ module.exports = {
3434 configure : function ( context ) {
3535 this . _super . configure . call ( this , context ) ;
3636 if ( this . readConfig ( 'zopfli' ) ) {
37- this . log ( "Using zopfli for compression" )
37+ this . log ( "Using zopfli for compression" , { verbose : true } ) ;
3838 this . gzipLibrary = this . project . require ( 'node-zopfli' ) ;
3939 } else {
4040 this . gzipLibrary = require ( 'zlib' ) ;
@@ -49,10 +49,10 @@ module.exports = {
4949 var distFiles = this . readConfig ( 'distFiles' ) || [ ] ;
5050 var keep = this . readConfig ( 'keep' ) ;
5151
52- this . log ( 'gzipping `' + filePattern + '`' ) ;
52+ this . log ( 'gzipping `' + filePattern + '`' , { verbose : true } ) ;
5353 return this . _gzipFiles ( distDir , distFiles , filePattern , keep )
5454 . then ( function ( gzippedFiles ) {
55- self . log ( 'gzipped ' + gzippedFiles . length + ' files ok' ) ;
55+ self . log ( 'gzipped ' + gzippedFiles . length + ' files ok' , { verbose : true } ) ;
5656 return { gzippedFiles : gzippedFiles } ;
5757 } )
5858 . catch ( this . _errorMessage . bind ( this ) ) ;
@@ -89,7 +89,7 @@ module.exports = {
8989 return filePath + '.gz' ;
9090 }
9191 } ) . then ( function ( outFilePath ) {
92- self . log ( '✔ ' + outFilePath ) ;
92+ self . log ( '✔ ' + outFilePath , { verbose : true } ) ;
9393
9494 return outFilePath ;
9595 } ) ;
0 commit comments