MCPcopy Create free account
hub / github.com/apache/httpd / dav_log_err

Function dav_log_err

modules/dav/main/mod_dav.c:615–629  ·  view source on GitHub ↗

* dav_log_err() * * Write error information to the log. */

Source from the content-addressed store, hash-verified

613 * Write error information to the log.
614 */
615static void dav_log_err(request_rec *r, dav_error *err, int level)
616{
617 dav_error *errscan;
618
619 /* Log the errors */
620 /* ### should have a directive to log the first or all */
621 for (errscan = err; errscan != NULL; errscan = errscan->prev) {
622 if (errscan->desc == NULL)
623 continue;
624
625 /* Intentional no APLOGNO */
626 ap_log_rerror(APLOG_MARK, level, errscan->aprerr, r, "%s [%d, #%d]",
627 errscan->desc, errscan->status, errscan->error_id);
628 }
629}
630
631/*
632 * dav_handle_err()

Callers 10

dav_handle_errFunction · 0.85
dav_method_putFunction · 0.85
dav_method_deleteFunction · 0.85
dav_method_propfindFunction · 0.85
dav_prop_log_errorsFunction · 0.85
dav_method_mkcolFunction · 0.85
dav_method_copymoveFunction · 0.85
dav_method_vsn_controlFunction · 0.85
dav_method_reportFunction · 0.85
dav_method_bindFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected