From 8452bdd5e7093777ef024cec470f8cb21220f7d3 Mon Sep 17 00:00:00 2001 From: miruka Date: Tue, 17 Mar 2020 12:11:18 -0400 Subject: [PATCH] Print only short error when image retrieval fails --- src/gui/Base/HMxcImage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Base/HMxcImage.qml b/src/gui/Base/HMxcImage.qml index 181cff43..f246e184 100644 --- a/src/gui/Base/HMxcImage.qml +++ b/src/gui/Base/HMxcImage.qml @@ -59,7 +59,7 @@ HImage { image.show = image.visible }, (type, args, error, traceback) => { - print(`Error retrieving ${mxc} (${title}):\n${traceback}`) + print(`Error retrieving ${mxc} (${title}): ${type} ${args}`) if (image) image.broken = true }, )