make output nicer

This commit is contained in:
xenia 2021-06-11 06:20:34 -04:00
parent 2f928b88dd
commit c05a4ce79d
4 changed files with 8 additions and 8 deletions

View File

@ -117,7 +117,7 @@
;; Executes one rule ;; Executes one rule
(define (execute-rule r) (define (execute-rule r)
(match-define (rule name ins out func) r) (match-define (rule name ins out func) r)
(printf "executing: ~a\n" name) (printf "executing: ~a -> ~a\n" name out)
(define cust (make-custodian)) (define cust (make-custodian))
(parameterize ([current-custodian cust]) (parameterize ([current-custodian cust])
(thread-wait (thread-wait

View File

@ -47,7 +47,7 @@
[(? string?) (void)] [(? string?) (void)]
[(list tag (list (list (? symbol?) (? string?)) ...) body ...) [(list tag (list (list (? symbol?) (? string?)) ...) body ...)
(void (map check-detailed-xexpr body))] (void (map check-detailed-xexpr body))]
[_ (displayln "problem:") (pretty-write x)])) [_ (printf "problem:\n") (pretty-write x)]))
(unless (xexpr? x) (unless (xexpr? x)
(check-detailed-xexpr x) (check-detailed-xexpr x)
(error "not xexpr!")) (error "not xexpr!"))

View File

@ -33,7 +33,7 @@
(define http-signature (format "keyId=\"~a\",algorithm=\"~a\",headers=\"~a\",signature=\"~a\"" (define http-signature (format "keyId=\"~a\",algorithm=\"~a\",headers=\"~a\",signature=\"~a\""
"foo://example-key" algorithm signed-header-spec signature)) "foo://example-key" algorithm signed-header-spec signature))
(displayln http-signature) ; (displayln http-signature)
;; GET /path HTTP/1.1 ;; GET /path HTTP/1.1
(define req-headers (define req-headers
@ -57,9 +57,9 @@
#:data #f #:data #f
#:content-decode '(gzip deflate))) #:content-decode '(gzip deflate)))
(displayln status) ; (displayln status)
(displayln resp-headers) ; (displayln resp-headers)
(displayln (port->bytes body)) ; (displayln (port->bytes body))
(void "TODO"))) (void "TODO")))