blob: dc525a5ff998ee1030c0dd82809457a1664e5046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* ISC license. */
#include <skalibs/strerr.h>
#include <tipidee/log.h>
void tipidee_log_resource (uint32_t v, char const *docroot, char const *file, tipidee_resattr const *ra)
{
if (!(v & TIPIDEE_LOG_RESOURCE)) return ;
strerr_warni6x("docroot ", docroot, " file ", file, " type ", ra->iscgi ? ra->isnph ? "nph" : "cgi" : ra->content_type) ;
}
|