in crates/iceberg/src/error.rs [280:289]
fn generate_error_with_backtrace_enabled() -> Error {
Error::new(
ErrorKind::Unexpected,
"something wrong happened".to_string(),
)
.with_context("path", "/path/to/file".to_string())
.with_context("called", "send_async".to_string())
.with_source(anyhow!("networking error"))
.with_backtrace(Backtrace::force_capture())
}