Skip to content

Commit

Permalink
Close parentheses on ddm retry log events
Browse files Browse the repository at this point in the history
Currently we do not add a trailing `)` for `ddm` "will retry after" log
messages.

Close the parens.

Before:

  Failed enable ddm stats (will retry after 208.130529ms

After:

  Failed enable ddm stats (will retry after 208.130529ms)
  • Loading branch information
wfchandler committed Jul 23, 2024
1 parent 38575ab commit 5c950c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clients/ddm-admin-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl Client {
}, |err, duration| {
info!(
me.log,
"Failed to notify ddmd of our address (will retry after {duration:?}";
"Failed to notify ddmd of our address (will retry after {duration:?})";
"err" => %err,
);
}).await.unwrap();
Expand All @@ -112,7 +112,7 @@ impl Client {
}, |err, duration| {
info!(
me.log,
"Failed to notify ddmd of tunnel endpoint (retry in {duration:?}";
"Failed to notify ddmd of tunnel endpoint (retry in {duration:?})";
"err" => %err,
);
}).await.unwrap();
Expand Down Expand Up @@ -176,7 +176,7 @@ impl Client {
}, |err, duration| {
info!(
me.log,
"Failed enable ddm stats (will retry after {duration:?}";
"Failed enable ddm stats (will retry after {duration:?})";
"err" => %err,
);
}).await.unwrap();
Expand Down

0 comments on commit 5c950c3

Please sign in to comment.