From ff636c86378e1b73c235f7fd783e7526760c3721 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Wed, 30 Jun 2021 17:10:26 -0700 Subject: skip announcing properties starting with '%' unless debug level >=3 Signed-off-by: Sean Whitton --- src/combinator.lisp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/combinator.lisp') diff --git a/src/combinator.lisp b/src/combinator.lisp index bcf532a..2f2d6f6 100644 --- a/src/combinator.lisp +++ b/src/combinator.lisp @@ -130,16 +130,16 @@ apply the elements of REQUIREMENTS in reverse order." (propapp-apply propapp))))) (dolist (propapp propapps return-value) (let ((announce - (or (> *consfigurator-debug-level* 1) - (and - (not (get (get (car propapp) 'combinator) - 'inline-combinator)) + (and (or (> *consfigurator-debug-level* 2) + (not (get (get (car propapp) 'combinator) + 'inline-combinator))) ;; We don't announce properties whose names begin with ;; '%' and which have no description; these are typically ;; DEFPROPs which exist only for use within a ;; DEFPROPLIST/DEFPROPSPEC defining an exported property. - (not (and (char= #\% (char (symbol-name (car propapp)) 0)) - (not (get (car propapp) 'desc))))))) + (not (and (< *consfigurator-debug-level* 3) + (char= #\% (char (symbol-name (car propapp)) 0)) + (not (get (car propapp) 'desc)))))) result) (unwind-protect-in-parent ;; TODO Nested combinators can mean that we establish this -- cgit v1.2.3