racket/collects/scribblings/reference/debugging.scrbl
Eli Barzilay debd1f9f1e Recketizing much in `net/*', mass ".ss" -> ".rkt" conversion in .scrbl files.
(Some other minor things here and there.)
2011-06-20 04:27:14 -04:00

17 lines
672 B
Racket

#lang scribble/doc
@(require "mz.rkt")
@title[#:tag "debugging"]{Debugging}
Racket's built-in debugging support is limited to context (i.e.,
``stack trace'') information that is printed with an exception. In
some cases, disabling the JIT compiler can affect context
information. The @racketmodname[errortrace] library supports more
consistent (independent of the JIT compiler) and precise context
information. The @racketmodname[racket/trace] library provides simple
tracing support. Finally, the @seclink[#:doc '(lib
"scribblings/drracket/drracket.scrbl") "top"]{DrRacket} programming environment
provides much more debugging support.
@include-section["trace.scrbl"]