From: Gert Doering Date: Mon, 29 Mar 2010 15:05:02 +0000 (+0200) Subject: revert unconditionally-enabling of setenv_es() logging (too noisy) X-Git-Tag: v2.3-alpha1~239^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2232f4b5ba74b7e0b77353e1e99f12637a8a15f6;p=thirdparty%2Fopenvpn.git revert unconditionally-enabling of setenv_es() logging (too noisy) replace with #ifdef DEBUG_VERBOSE_SETENV compile-time flag --- diff --git a/misc.c b/misc.c index 8d1e0e7cf..d49900942 100644 --- a/misc.c +++ b/misc.c @@ -1004,7 +1004,9 @@ setenv_str_ex (struct env_set *es, { const char *str = construct_name_value (name_tmp, val_tmp, &gc); env_set_add (es, str); - msg (M_INFO, "SETENV_ES '%s'", str);/**/ +#if DEBUG_VERBOSE_SETENV + msg (M_INFO, "SETENV_ES '%s'", str); +#endif } else env_set_del (es, name_tmp);