Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/anonymous
In directory usw-pr-cvs1:/tmp/cvs-serv16685/anonymous
Modified Files:
AnonymousAuthenticator.java
Log Message:
Changed to only log blob contents on ABORT
Index: AnonymousAuthenticator.java
===================================================================
RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/sasl/anonymous/AnonymousAuthenticator.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** AnonymousAuthenticator.java 2001/07/30 13:07:11 1.8
--- AnonymousAuthenticator.java 2001/07/30 13:48:15 1.9
***************
*** 375,387 ****
}
- if (blob.getData() != null) {
- Log.logEntry(Log.SEV_DEBUG,
- "Anonymous Authenticator receiveRPY=>"
- + blob.getData());
- }
String status = blob.getStatus();
if ((status != null)
&& status.equals(SASLProfile.SASL_STATUS_ABORT)) {
sendAbort = false;
abort(ERR_PEER_ABORTED);
--- 375,385 ----
}
String status = blob.getStatus();
if ((status != null)
&& status.equals(SASLProfile.SASL_STATUS_ABORT)) {
+ Log.logEntry(Log.SEV_DEBUG,
+ "Anonymous Authenticator receiveRPY=>"
+ + blob.getData());
sendAbort = false;
abort(ERR_PEER_ABORTED);
|