Remove console-messages for production build

This commit is contained in:
Christoph Oberhofer
2016-02-28 20:03:35 +01:00
parent 835f524b33
commit 47f0169709
8 changed files with 57 additions and 20 deletions
+3 -1
View File
@@ -570,7 +570,9 @@ export default {
};
patchSize = CVUtils.calculatePatchSize(config.patchSize, size);
console.log("Patch-Size: " + JSON.stringify(patchSize));
if (ENV.development) {
console.log("Patch-Size: " + JSON.stringify(patchSize));
}
inputStream.setWidth(Math.floor(Math.floor(size.x / patchSize.x) * (1 / halfSample) * patchSize.x));
inputStream.setHeight(Math.floor(Math.floor(size.y / patchSize.y) * (1 / halfSample) * patchSize.y));