From 31d279f7916fc221f019e28a5ca7bb8630276de9 Mon Sep 17 00:00:00 2001 From: reyk Date: Tue, 29 Jul 2014 16:38:34 +0000 Subject: [PATCH] The inflight decremented message should only be printed with DEBUG. --- usr.sbin/httpd/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/httpd/server.c b/usr.sbin/httpd/server.c index a41bc2c27a5..cff35e0607b 100644 --- a/usr.sbin/httpd/server.c +++ b/usr.sbin/httpd/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.14 2014/07/29 12:16:36 reyk Exp $ */ +/* $OpenBSD: server.c,v 1.15 2014/07/29 16:38:34 reyk Exp $ */ /* * Copyright (c) 2006 - 2014 Reyk Floeter @@ -577,7 +577,7 @@ server_inflight_dec(struct client *clt, const char *why) /* the file was never opened, thus this was an inflight client. */ server_inflight--; - log_debug("%s: inflight decremented, now %d, %s", + DPRINTF("%s: inflight decremented, now %d, %s", __func__, server_inflight, why); } -- 2.20.1