racket/collects/scribblings/reference/debugging.scrbl
Matthew Flatt 0d9f5016ba fix bytecode-writing inconsistencies related to syntax objects and paths
and improve organization of the docs
2010-08-17 17:18:24 -06:00

17 lines
671 B
Racket

#lang scribble/doc
@(require "mz.ss")
@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"]