summaryrefslogtreecommitdiff
path: root/src/libtipidee/tipidee_log_resource.c
blob: 6387027eed74b28c99474a1a4959d3ef5801fb23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ISC license. */

#include <skalibs/strerr.h>

#include <tipidee/log.h>

void tipidee_log_resource (uint32_t v, tipidee_rql const *rql, char const *docroot, char const *file, tipidee_resattr const *ra)
{
  char const *a[8] = { PROG, ": info:" } ;
  size_t m = 2 ;
  if (!(v & TIPIDEE_LOG_RESOURCE)) return ;
  if (v & TIPIDEE_LOG_HOSTASPREFIX)
  {
    a[m++] = " host " ;
    a[m++] = rql->uri.host ;
  }
  a[m++] = " docroot " ;
  a[m++] = docroot ;
  a[m++] = " file " ;
  a[m++] = file ;
  a[m++] = " type " ;
  a[m++] = ra->iscgi ? ra->isnph ? "nph" : "cgi" : ra->content_type ;
  strerr_warnv(a, m) ;
}