There is no standard way to do this. You can override the display procedure (or any other output on your circuit) so that it does not print objects of a specific type.
(define display-old display) (define (display obj) (if (not (invisible? obj)) (display-old obj)))
source share