From 44e52e72b993e9b264ab56ca22265a3ea2e36733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Mon, 6 Dec 2021 11:48:44 +0100 Subject: [PATCH] Change failed call to xsltproc to a warning Failing things must be logged as a warning because this might indicate serious issues. --- src/manage.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/manage.c b/src/manage.c index dfaae29d6..f7dbaf1b2 100644 --- a/src/manage.c +++ b/src/manage.c @@ -5374,11 +5374,11 @@ xsl_transform (gchar *stylesheet, gchar *xmlfile, gchar **param_names, || (WIFEXITED (exit_status) == 0) || WEXITSTATUS (exit_status)) { - g_debug ("%s: failed to transform the xml: %d (WIF %i, WEX %i)", - __func__, - exit_status, - WIFEXITED (exit_status), - WEXITSTATUS (exit_status)); + g_warning ("%s: failed to transform the xml: %d (WIF %i, WEX %i)", + __func__, + exit_status, + WIFEXITED (exit_status), + WEXITSTATUS (exit_status)); g_debug ("%s: stderr: %s", __func__, standard_err); g_debug ("%s: stdout: %s", __func__, standard_out); success = FALSE;