From a7b78c73c47b198b05e9d22604e32ca00497d565 Mon Sep 17 00:00:00 2001 From: munja Date: Wed, 9 Feb 2022 22:07:30 +0100 Subject: [PATCH] chore: adding mprintnest in debug mode in testinit.sas --- tests/testinit.sas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testinit.sas b/tests/testinit.sas index a1564fe..7c5e363 100644 --- a/tests/testinit.sas +++ b/tests/testinit.sas @@ -19,7 +19,7 @@ %macro loglevel(); %if "&_debug"="2477" or "&_debug"="fields,log,trace" %then %do; %put debug mode activated; - options mprint; + options mprint mprintnest; %end; %mend loglevel;