Remove image log

This commit is contained in:
Andrea Maria Piana 2020-12-16 19:34:58 +01:00
parent b3187abce1
commit 58f2dac673
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}