We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6fab891 + b41899d commit 5d908adCopy full SHA for 5d908ad
src/aggregator/processing.rs
@@ -216,7 +216,11 @@ fn process_one_layer(
216
} = match recover_msgs(msgs, &key) {
217
Ok(info) => info,
218
Err(e) => {
219
- debug!("failed to recover {threshold_msgs_len} messages for threshold {threshold} on id {id} for tag {}: {e}", hex::encode(msg_tag));
+ debug!(
220
+ "failed to recover {threshold_msgs_len} messages for threshold {threshold} on id {id} for tag {} and parent tag {}: {e}",
221
+ hex::encode(msg_tag),
222
+ hex::encode(chunk.parent_msg_tag.clone().unwrap_or_default()),
223
+ );
224
if threshold_msgs_len
225
<= parse_env_var::<usize>(
226
TOTAL_RECOVERY_FAIL_MAX_MSGS_ENV,
0 commit comments