Skip to content

Commit c49c7c6

Browse files
committed
Log option names using dash-case instead of snake_case
1 parent 60c9f1c commit c49c7c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auth_monitor_options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl Display for AuthMonitorOptions {
1919
fn fmt(&self, formatter: &mut Formatter<'_>) -> std::fmt::Result {
2020
return write!(
2121
formatter,
22-
"max_failed_attempts={}, reset_after_seconds={}",
22+
"max-failed-attempts={}, reset-after-seconds={}",
2323
self.max_failed_attempts, self.reset_after_seconds
2424
);
2525
}

0 commit comments

Comments
 (0)