aboutsummaryrefslogtreecommitdiff
path: root/src/combinator.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/combinator.lisp')
-rw-r--r--src/combinator.lisp12
1 files changed, 6 insertions, 6 deletions
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