From f27ac155ae1362625f1d5fce9ffcb354ac6c4c30 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Wed, 6 Apr 2022 14:47:29 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Downgrade=20"Patch=20size"=20log?= =?UTF-8?q?=20message=20to=20debug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes gh-55. --- qurator/eynollah/eynollah.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qurator/eynollah/eynollah.py b/qurator/eynollah/eynollah.py index d3253a6..f8d7d09 100644 --- a/qurator/eynollah/eynollah.py +++ b/qurator/eynollah/eynollah.py @@ -546,7 +546,7 @@ class Eynollah: if img.shape[1] < img_width_model: img = resize_image(img, img.shape[0], img_width_model) - self.logger.info("Patch size: %sx%s", img_height_model, img_width_model) + self.logger.debug("Patch size: %sx%s", img_height_model, img_width_model) margin = int(marginal_of_patch_percent * img_height_model) width_mid = img_width_model - 2 * margin height_mid = img_height_model - 2 * margin