From: Jeremy Harris Date: Sun, 14 Aug 2016 20:00:46 +0000 (+0100) Subject: Expansions: more debug verbosity in expansion conditions X-Git-Tag: exim-4_88_RC1~26 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/c7c833c6172626ec216e9ecd650ff1fe975cc850 Expansions: more debug verbosity in expansion conditions --- diff --git a/src/src/expand.c b/src/src/expand.c index fd55436a2..0da210569 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -3050,6 +3050,8 @@ switch(cond_type) "value \"%s\"", t); return NULL; } + DEBUG(D_expand) debug_printf("%s: condition evaluated to %s\n", ourname, + boolvalue? "true":"false"); if (yield != NULL) *yield = (boolvalue == testfor); return s; }