Fix bug with SVG minification+compression

This commit is contained in:
Gaël Métais
2015-06-18 23:06:57 +02:00
parent 113665139a
commit d4815e855e
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ var GzipCompressor = function() {
var compressedSize = buffer.length;
if (gainIsEnough(uncompressedSize, compressedSize)) {
debug('Minified file correctly gziped, was %d and is now %d bytes', uncompressedSize, compressedSize);
debug('Correctly gziped the minified file, was %d and is now %d bytes', uncompressedSize, compressedSize);
entry.weightCheck.afterOptimizationAndCompression = compressedSize;
} else {