do not debug print

This commit is contained in:
Cadence Ember 2022-08-31 00:48:01 +12:00
parent fb00a2e443
commit 8754273acf
Signed by untrusted user: cadence
GPG Key ID: BC1C2C61CF521B17
1 changed files with 1 additions and 3 deletions

View File

@ -61,9 +61,7 @@
(define new-uri (struct-copy url old-uri [path new-path]))
(define new-req (struct-copy request old-req [uri new-uri]))
((files:make
#:url->path (lambda (u)
(println u)
((make-url->path path-static) u))
#:url->path (lambda (u) ((make-url->path path-static) u))
#:path->mime-type (lambda (u) (ext->mime-type (path-get-extension u)))
#:cache-no-cache (config-true? 'debug) #;"browser applies heuristics if unset")
conn new-req))