Improved customized error handling

This commit is contained in:
Olof hagsand 2024-08-20 11:05:52 +02:00
parent 7cc94b3ac5
commit 71e921520e
2 changed files with 2 additions and 2 deletions

View file

@ -448,7 +448,7 @@ clixon_err_fn(clixon_handle h,
strncpy(_err_reason, cbuf_get(cb), ERR_STRLEN-1); strncpy(_err_reason, cbuf_get(cb), ERR_STRLEN-1);
_err_category = category; _err_category = category;
_err_subnr = suberr; _err_subnr = suberr;
clixon_log_fn(h, 0, LOG_ERR, xerr, "%s", cbuf_get(cb)); clixon_log_fn(h, 0, LOG_ERR, NULL, "%s", cbuf_get(cb));
goto ok; goto ok;
} }
if ((cb = cbuf_new()) == NULL){ if ((cb = cbuf_new()) == NULL){

View file

@ -406,7 +406,7 @@ clixon_log_fn(clixon_handle h,
goto done; goto done;
va_end(ap); va_end(ap);
if (cb != NULL){ /* Customized: expand clixon_err_args */ if (cb != NULL){ /* Customized: expand clixon_err_args */
clixon_log(h, LOG_ERR, "%s", cbuf_get(cb)); clixon_log_fn(h, 0, LOG_ERR, NULL, "%s", cbuf_get(cb));
goto ok; goto ok;
} }
} }