From 6508eb5c3aaeb9b0bfea1a6b93afef8a576f4fb5 Mon Sep 17 00:00:00 2001 From: ertrzyiks Date: Mon, 5 Mar 2018 20:36:43 +0100 Subject: [PATCH] Remove debug --- lib/responsive_images.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/responsive_images.js b/lib/responsive_images.js index 822b9e6..3c9cf8b 100644 --- a/lib/responsive_images.js +++ b/lib/responsive_images.js @@ -35,7 +35,6 @@ function generateResponsiveImages() { return Promise.all(sizes.map(function (sizeSets) { return Promise.all(Object.keys(sizeSets).map(function (name) { var newPath = getNewPath(filePath, {prefix: name}) - console.log('SIEMA', filePath, newPath) return route.set(newPath, resizeImageFn(buffer, sizeSets[name])) })) }))