Skip to content

Commit

Permalink
fix write failure
Browse files Browse the repository at this point in the history
  • Loading branch information
NightDev701 committed May 26, 2024
1 parent a86a9b0 commit 3b9db69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private void connectAndLogin(FTPClient ftpClient) {
if (login) {
logger.log(Level.INFO, "Login successful: " + user);
} else {
logger.log(Level.INFO, ("Login failed for user: " + user);
logger.log(Level.INFO, "Login failed for user: " + user);
}
} catch (IOException ex) {
logger.log(Level.WARNING, "Could not connect to server: " + ex.getMessage());
Expand Down

0 comments on commit 3b9db69

Please sign in to comment.