mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 22:11:06 +00:00
Add a new host function for reporting fatal errors; make WASM backtraces readable when printing out errors (#10741)
* Add a new host function for reporting fatal errors * Fix one of the wasmtime executor tests * Have `#[runtime_interface(wasm_only)]` actually mean WASM-only, and not no_std-only * Print out errors through `Display` instead of `Debug` * Switch one more trait to require `Error` for its error instead of only `Debug` * Align to review comments
This commit is contained in:
@@ -38,7 +38,7 @@ pub enum Error {
|
||||
#[error("Failed to hash the authority id to be used as a dht key.")]
|
||||
HashingAuthorityId(#[from] libp2p::core::multiaddr::multihash::Error),
|
||||
|
||||
#[error("Failed calling into the Substrate runtime.")]
|
||||
#[error("Failed calling into the Substrate runtime: {0}")]
|
||||
CallingRuntime(#[from] sp_blockchain::Error),
|
||||
|
||||
#[error("Received a dht record with a key that does not match any in-flight awaited keys.")]
|
||||
|
||||
@@ -187,7 +187,7 @@ where
|
||||
Some(registry) => match Metrics::register(®istry) {
|
||||
Ok(metrics) => Some(metrics),
|
||||
Err(e) => {
|
||||
error!(target: LOG_TARGET, "Failed to register metrics: {:?}", e);
|
||||
error!(target: LOG_TARGET, "Failed to register metrics: {}", e);
|
||||
None
|
||||
},
|
||||
},
|
||||
@@ -242,7 +242,7 @@ where
|
||||
if let Err(e) = self.publish_ext_addresses(only_if_changed).await {
|
||||
error!(
|
||||
target: LOG_TARGET,
|
||||
"Failed to publish external addresses: {:?}", e,
|
||||
"Failed to publish external addresses: {}", e,
|
||||
);
|
||||
}
|
||||
},
|
||||
@@ -251,7 +251,7 @@ where
|
||||
if let Err(e) = self.refill_pending_lookups_queue().await {
|
||||
error!(
|
||||
target: LOG_TARGET,
|
||||
"Failed to request addresses of authorities: {:?}", e,
|
||||
"Failed to request addresses of authorities: {}", e,
|
||||
);
|
||||
}
|
||||
},
|
||||
@@ -426,7 +426,7 @@ where
|
||||
metrics.handle_value_found_event_failure.inc();
|
||||
}
|
||||
|
||||
debug!(target: LOG_TARGET, "Failed to handle Dht value found event: {:?}", e);
|
||||
debug!(target: LOG_TARGET, "Failed to handle Dht value found event: {}", e);
|
||||
}
|
||||
},
|
||||
DhtEvent::ValueNotFound(hash) => {
|
||||
|
||||
Reference in New Issue
Block a user