Skip to content

Commit 6f081b8

Browse files
committed
Add log to coordinator retry method
1 parent 7cbb313 commit 6f081b8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/coordinator.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ impl CoordinatorClient {
4242
Ok(res) => return Ok(res),
4343
Err(e) => error = Some(e),
4444
}
45+
log::debug!(
46+
"Error while communicating with coordinator: {:?}, retrying",
47+
error,
48+
);
4549
}
4650
Err(error.expect("An error must have happened"))
4751
}

0 commit comments

Comments
 (0)