Skip to content

Commit

Permalink
Make ASDF noisier with KILN_DEBUG set
Browse files Browse the repository at this point in the history
  • Loading branch information
ruricolist committed Dec 14, 2024
1 parent 815a61f commit bbafda5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion system.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
(lambda (system &rest args)
(apply fn system :silent silent args)))
(if (not silent)
#'asdf:load-system
(lambda (system &rest args)
(multiple-value-call #'asdf:load-system
system
(values-list args)
:verbose t))
(lambda (system &rest args)
(let ((*standard-output* (make-broadcast-stream))
(*error-output* (make-broadcast-stream)))
Expand Down

0 comments on commit bbafda5

Please sign in to comment.