Crate bugsalot
Source - debugger
- APIs for interacting with native debuggers for the current process.
- bug
- Reports a bug by logging/breaking. Unlike
panic!(...)
this is nonfatal and continuable. - debug
- Log (part of) a line to standard debugging channels. Prefer debugln!
- debugln
- Log a line to standard debugging channels.
- expect
- Unwraps Options and Results, logging/breaking on errors, but unlike
a.expect("msg")
this is nonfatal and continuable. - unwrap
- Unwraps Options and Results, logging/breaking on errors, but unlike
a.unwrap()
this is nonfatal and continuable.