Skip to content

Commit

Permalink
Add debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdint committed Oct 14, 2016
1 parent 81a3fa0 commit 3a66954
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frog/responsive-images.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
(define (image-width path)
(string->number
(with-output-to-string
(λ () (system* identify "-format" "%w" path)))))
(λ ()
(eprintf "identify=~a path=~a\n" identify path)
(system* identify "-format" "%w" path)))
))

(module+ test
(when magick-available?
Expand Down

0 comments on commit 3a66954

Please sign in to comment.