From: Fred Morcos Date: Mon, 22 Jan 2024 21:25:14 +0000 (+0100) Subject: CI: Enable verbose logging to catch errors withing DLOG macros X-Git-Tag: dnsdist-1.9.0-rc1~13^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a299f9dd2e813f79be18f7969cc4e676f350956;p=thirdparty%2Fpdns.git CI: Enable verbose logging to catch errors withing DLOG macros --- diff --git a/tasks.py b/tasks.py index 599f769056..c5c1477dd5 100644 --- a/tasks.py +++ b/tasks.py @@ -466,6 +466,7 @@ def ci_auth_configure(c): "--enable-experimental-pkcs11", "--enable-experimental-gss-tsig", "--enable-remotebackend-zeromq", + "--enable-verbose-logging", "--with-lmdb=/usr", "--with-libdecaf" if os.getenv('DECAF_SUPPORT', 'no') == 'yes' else '', "--prefix=/opt/pdns-auth", @@ -491,6 +492,7 @@ def ci_rec_configure(c): "--with-libcap", "--with-net-snmp", "--enable-dns-over-tls", + "--enable-verbose-logging", unittests, ]) res = c.run(configure_cmd, warn=True)