We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d89db0 commit ba547b4Copy full SHA for ba547b4
src/jormungandr/testing/jormungandr-automation/src/jormungandr/fragment_node.rs
@@ -6,14 +6,13 @@ use jormungandr_lib::{
6
};
7
use std::collections::HashMap;
8
9
-#[derive(custom_debug::Debug, thiserror::Error)]
+#[derive(Debug, thiserror::Error)]
10
pub enum FragmentNodeError {
11
#[error("cannot send fragment due to '{reason}' to '{fragment_id}' to node '{alias}'")]
12
CannotSendFragment {
13
reason: String,
14
alias: String,
15
fragment_id: FragmentId,
16
- #[debug(skip)]
17
logs: Vec<String>,
18
},
19
#[error("reqwest error")]
@@ -29,7 +28,6 @@ pub enum FragmentNodeError {
29
28
30
31
fragment_ids: Vec<FragmentId>,
32
33
34
35
}
0 commit comments