Hi Robert,
On Mon, Jan 06, 2014 at 11:29:31AM +0100, Robert Dahlem wrote:
> Hi,
>
> On 06.01.2014 10:42, Robert Dahlem wrote:
>
> > If not: is this the thing to do with a private patch?
> >
> > proto_http.c / http_sess_clflog()
> > -err = (s->flags & (SN_ERR_MASK | SN_REDISP)) ||
> > +err = (s->flags & ((SN_ERR_MASK & ~SN_ERR_CLITO) | SN_REDISP)) ||
>
> Actually, http_sess_log() would be the better place to do that.
It would be a terrible mistake not to log timeouts, because they are
among the hardest things to figure out or to prove.
Maybe you should disable logging of properly established tunnels instead,
something like this :
http-response set-log-level none if { method CONNECT } { status 200 }
Regards,
Willy