Improved customized error handling
This commit is contained in:
parent
7cc94b3ac5
commit
71e921520e
2 changed files with 2 additions and 2 deletions
|
|
@ -448,7 +448,7 @@ clixon_err_fn(clixon_handle h,
|
|||
strncpy(_err_reason, cbuf_get(cb), ERR_STRLEN-1);
|
||||
_err_category = category;
|
||||
_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;
|
||||
}
|
||||
if ((cb = cbuf_new()) == NULL){
|
||||
|
|
|
|||
|
|
@ -406,7 +406,7 @@ clixon_log_fn(clixon_handle h,
|
|||
goto done;
|
||||
va_end(ap);
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue