From 401c985b5b1363a1de3c1c8d6957aa4e8a976e11 Mon Sep 17 00:00:00 2001 From: Nils Juenemann Date: Wed, 31 Mar 2021 12:19:48 +0200 Subject: [PATCH] Remove debug output --- resizer.go | 1 - 1 file changed, 1 deletion(-) diff --git a/resizer.go b/resizer.go index b8ad84f..ef1abfc 100644 --- a/resizer.go +++ b/resizer.go @@ -69,7 +69,6 @@ func resizer(buf []byte, o Options) ([]byte, error) { shrink := calculateShrink(factor, o.Interpolator) residual := calculateResidual(factor, shrink) - fmt.Printf("size=%vx%v, factor=%v, shrink=%v, residual=%v, opts=%+v\n", inWidth, inHeight, factor, shrink, residual, o) // Do not enlarge the output if the input width or height // are already less than the required dimensions if !o.Enlarge && !o.Force {