racket/pkgs/racket-doc/scribblings/reference/debugging.scrbl
Matthew Flatt 2d4f3e2ac9 remove the "racket-pkgs" directory layer
The layer is now redundant, since everything left in "pkgs" is in the
"racket-pkgs" category.
2014-12-08 05:22:59 -07:00

17 lines
701 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 @tech{JIT} compiler can affect context
information. The @racketmodname[errortrace] library supports more
consistent (independent of the @tech{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" #:indirect? #t]{DrRacket} programming environment
provides much more debugging support.
@include-section["trace.scrbl"]