Format with rustfmt
All checks were successful
ci / check (push) Successful in 44s

This commit is contained in:
Jean Chevronnet 2026-07-29 19:17:16 +00:00
parent facbde55bd
commit 7846f91afe
No known key found for this signature in database
GPG key ID: 439666D63A9477E4
11 changed files with 209 additions and 54 deletions

View file

@ -50,7 +50,9 @@ fn supervise(config: Config, labelled: bool) {
loop {
match run_once(&config, labelled) {
Ok(()) => {
log(&format!("{tag}server closed the connection; reconnecting shortly"));
log(&format!(
"{tag}server closed the connection; reconnecting shortly"
));
backoff = 1;
}
Err(e) => log(&format!("{tag}session error: {e}; retrying in {backoff}s")),