From d81fe1352c1b774b2382df17fb70f2b0b3748ece Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 31 Jul 2023 08:31:22 -0400 Subject: [PATCH] validate: ssim: Minor debug message enhancements Part-of: --- .../validate/gst-libs/gst/video/gstvalidatessim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-devtools/validate/gst-libs/gst/video/gstvalidatessim.c b/subprojects/gst-devtools/validate/gst-libs/gst/video/gstvalidatessim.c index 8c2943c42b..bf523556f7 100644 --- a/subprojects/gst-devtools/validate/gst-libs/gst/video/gstvalidatessim.c +++ b/subprojects/gst-devtools/validate/gst-libs/gst/video/gstvalidatessim.c @@ -712,7 +712,7 @@ gst_validate_ssim_compare_image_file (GstValidateSsim * self, if (!real_ref_file) { GST_VALIDATE_REPORT (self, GENERAL_INPUT_ERROR, - "Could find ref file for %s", ref_file); + "Could not find ref file: %s for file: %s", ref_file, file); goto fail; } @@ -848,7 +848,7 @@ _check_directory (GstValidateSsim * self, const gchar * ref_dir, gchar *ref_file = NULL; if (!g_file_test (compared_file, G_FILE_TEST_IS_REGULAR)) { - GST_INFO_OBJECT (self, "Could not find file %s", compared_file); + GST_ERROR_OBJECT (self, "Could not find file %s", compared_file); nnotfound++; res = FALSE; } else {