Skip to content

Commit

Permalink
chore: OF-2599 - remove unnecessary System.out statements
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexGidman committed Jul 31, 2023
1 parent 4249000 commit 05ab969
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ boolean processUnknowPacket(Element doc) {
if (session instanceof LocalOutgoingServerSession) {
((LocalOutgoingServerSession) session).setAuthenticationMethod(ServerSession.AuthenticationMethod.SASL_EXTERNAL);
} else {
System.out.println("Expected session to be a LocalOutgoingServerSession but it isn't, unable to setAuthenticationMethod().");
LOG.debug("Expected session to be a LocalOutgoingServerSession but it isn't, unable to setAuthenticationMethod().");
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class RemoteReceivingServerDummy extends AbstractRemoteServerDummy implem
/**
* When switched to 'true', most XMPP interaction will be printed to standard-out.
*/
public static final boolean doLog = true;
public static final boolean doLog = false;

private ServerSocket server;

Expand Down

0 comments on commit 05ab969

Please sign in to comment.