Skip to content

Commit 2d1baf4

Browse files
authored
Close parentheses on ddm retry log events (#6146)
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) ```
1 parent 71fe60a commit 2d1baf4

File tree

1 file changed

+3
-3
lines changed
  • clients/ddm-admin-client/src

1 file changed

+3
-3
lines changed

clients/ddm-admin-client/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ impl Client {
9696
}, |err, duration| {
9797
info!(
9898
me.log,
99-
"Failed to notify ddmd of our address (will retry after {duration:?}";
99+
"Failed to notify ddmd of our address (will retry after {duration:?})";
100100
"err" => %err,
101101
);
102102
}).await.unwrap();
@@ -112,7 +112,7 @@ impl Client {
112112
}, |err, duration| {
113113
info!(
114114
me.log,
115-
"Failed to notify ddmd of tunnel endpoint (retry in {duration:?}";
115+
"Failed to notify ddmd of tunnel endpoint (retry in {duration:?})";
116116
"err" => %err,
117117
);
118118
}).await.unwrap();
@@ -176,7 +176,7 @@ impl Client {
176176
}, |err, duration| {
177177
info!(
178178
me.log,
179-
"Failed enable ddm stats (will retry after {duration:?}";
179+
"Failed enable ddm stats (will retry after {duration:?})";
180180
"err" => %err,
181181
);
182182
}).await.unwrap();

0 commit comments

Comments
 (0)