| ... | ... | @@ -868,7 +868,7 @@ fn printUnknownSource(debug_info: *DebugInfo, out_stream: anytype, address: usiz |
| 868 | 868 | pub fn printUnwindError(debug_info: *DebugInfo, out_stream: anytype, address: usize, err: UnwindError, tty_config: io.tty.Config) !void { |
| 869 | 869 | const module_name = debug_info.getModuleNameForAddress(address) orelse "???"; |
| 870 | 870 | try tty_config.setColor(out_stream, .dim); |
| 871 | | try out_stream.print("Unwind information for `{s}` was not available ({}), trace may be incomplete\n\n", .{ module_name, err }); |
| 871 | try out_stream.print("Unwind information for `{s}:{}` was not available ({}), trace may be incomplete\n\n", .{ module_name, address, err }); |
| 872 | 872 | try tty_config.setColor(out_stream, .reset); |
| 873 | 873 | } |
| 874 | 874 | |