aboutsummaryrefslogtreecommitdiff
path: root/src/combinator.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/combinator.lisp')
-rw-r--r--src/combinator.lisp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/combinator.lisp b/src/combinator.lisp
index b5fa8da..d2d02ff 100644
--- a/src/combinator.lisp
+++ b/src/combinator.lisp
@@ -117,8 +117,9 @@ apply the elements of REQUIREMENTS in reverse order."
(propapps
(remove-if #'null (if unapply (reverse propapps) propapps))))
(dolist (propapp propapps ret)
- (let ((announce (not (get (get (car propapp) 'combinator)
- 'inline-combinator))))
+ (let ((announce (or (> 1 *consfigurator-debug-level*)
+ (not (get (get (car propapp) 'combinator)
+ 'inline-combinator)))))
(multiple-value-bind (result output)
;; TODO Nested combinators can mean that we establish this
;; restart more than once, and they all appear in the debugger
@@ -129,7 +130,8 @@ apply the elements of REQUIREMENTS in reverse order."
(announce-propapp-apply propapp)
(propapp-apply propapp))
(skip-property () :failed-change))
- (when (and output (not (eql result :no-change)))
+ (when (and output (or (> 1 *consfigurator-debug-level*)
+ (not (eql result :no-change))))
(fresh-line)
(princ output))
(when announce