Skip to content

Commit

Permalink
Merge pull request #1757 from greenbone/mergify/bp/stable/pr-1756
Browse files Browse the repository at this point in the history
Change failed call to xsltproc to a warning (backport #1756)
  • Loading branch information
y0urself authored Dec 6, 2021
2 parents 58b9930 + f0b9f32 commit 712612d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/manage.c
Original file line number Diff line number Diff line change
Expand Up @@ -5655,11 +5655,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;
Expand Down

0 comments on commit 712612d

Please sign in to comment.