From 58f2dac67307b8e12d88c5d3b62580603e42f5c6 Mon Sep 17 00:00:00 2001 From: Andrea Maria Piana Date: Wed, 16 Dec 2020 19:34:58 +0100 Subject: [PATCH] Remove image log --- images/manipulation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/manipulation.go b/images/manipulation.go index 2009225b6..6e2bbd3ba 100644 --- a/images/manipulation.go +++ b/images/manipulation.go @@ -22,7 +22,7 @@ func Resize(size ResizeDimension, img image.Image) image.Image { width, height = uint(size), 0 } - log.Info("resizing", "size", size, "width", width, "height", height, "img", img) + log.Info("resizing", "size", size, "width", width, "height", height) return resize.Resize(width, height, img, resize.Bilinear) }