Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl

Idiom #253 Print stack trace

Print the stack frames of the current execution thread of the program.

import Carp 'cluck';
cluck 'print this message and a full stack track';

See documentation of Carp for many other variations.
import "runtime/debug"
debug.PrintStack()

Prints to standard error

New implementation...
< >
programming-idioms.org