changing the profiler settings to I can see more.

This commit is contained in:
Danny Yoo 2011-09-07 14:13:59 -04:00
parent bf5698c0fa
commit ccb06c9370

View File

@ -4,7 +4,7 @@
(require "private/command.rkt"
"parameters.rkt"
"whalesong-helpers.rkt"
profile
profile profile/render-text
(for-syntax racket/base))
;; Command line for running Whalesong.
@ -39,7 +39,13 @@
[(_ expr)
(syntax/loc stx
(if (with-profiling?)
(profile expr)
(profile expr
#:threads #t
#:delay 0.01
#:render (lambda (profile)
(render profile
#:truncate-source 500)))
expr))]))