Skip to content

Commit

Permalink
ssh: remote unnecessary String#valueOf call in logging
Browse files Browse the repository at this point in the history
Acked-by: Paul Millar
Target: master
Require-book: no
Require-notes: no
  • Loading branch information
kofemann committed Aug 26, 2021
1 parent 4a1ffa1 commit c4f755b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void setLoginStrategy(LoginStrategy loginStrategy) {
}

public void setPort(int port) {
_log.debug("Ssh2 port set to: {}", String.valueOf(port));
_log.debug("Ssh2 port set to: {}", port);
_port = port;
}

Expand Down

0 comments on commit c4f755b

Please sign in to comment.