Logo

Programming-Idioms

  • C++
  • Rust

Idiom #253 Print stack trace

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

use backtrace::Backtrace;
let bt = Backtrace::new();
println!("{:?}", bt);
import "runtime/debug"
debug.PrintStack()

Prints to standard error

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