From e457f2130632aa745ef4942b7686792d36742ed1 Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 18 Mar 2025 12:43:48 -0400 Subject: [PATCH] chore(server): show square flag in resize artwork logs Signed-off-by: Deluan --- core/artwork/reader_resized.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/artwork/reader_resized.go b/core/artwork/reader_resized.go index 46d0f8866..83e6e25c2 100644 --- a/core/artwork/reader_resized.go +++ b/core/artwork/reader_resized.go @@ -63,12 +63,12 @@ func (a *resizedArtworkReader) Reader(ctx context.Context) (io.ReadCloser, strin resized, origSize, err := resizeImage(orig, a.size, a.square) if resized == nil { - log.Trace(ctx, "Image smaller than requested size", "artID", a.artID, "original", origSize, "resized", a.size) + log.Trace(ctx, "Image smaller than requested size", "artID", a.artID, "original", origSize, "resized", a.size, "square", a.square) } else { - log.Trace(ctx, "Resizing artwork", "artID", a.artID, "original", origSize, "resized", a.size) + log.Trace(ctx, "Resizing artwork", "artID", a.artID, "original", origSize, "resized", a.size, "square", a.square) } if err != nil { - log.Warn(ctx, "Could not resize image. Will return image as is", "artID", a.artID, "size", a.size, err) + log.Warn(ctx, "Could not resize image. Will return image as is", "artID", a.artID, "size", a.size, "square", a.square, err) } if err != nil || resized == nil { // if we couldn't resize the image, return the original