human-panic icon indicating copy to clipboard operation
human-panic copied to clipboard

Cause (Payload) Does Not Support Strings

Open frankwillis42 opened this issue 6 years ago • 0 comments

https://github.com/rust-cli/human-panic/blob/200e427603841238a4a9ff97ca9e0c5d5b9be974/src/lib.rs#L220

The code attempts to downcast to &str but this will return None if the PanicInfo.payload() is a String. For example, consider the following panic:

panic!("this is a {}", "test");

The "Cause" will not be displayed in the "explanation" portion of the dump file as this panic has a payload of type String which is not &str. How do I get the Cause to show when I use a panic such as this? Or does this require a code change to support downcasting to other types such as String?

frankwillis42 avatar Jun 18 '19 14:06 frankwillis42