mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

ludovicp
03.11.2008 8def551daf0782c945905da8fff6cfc1100a61e3
Fix an issue where the result code for Abandon operation was not quoted unlike all other operations.
1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/loggers/TextAccessLogPublisher.java
@@ -497,9 +497,9 @@
    buffer.append(abandonOperation.getOperationID());
    buffer.append(" msgID=");
    buffer.append(abandonOperation.getMessageID());
    buffer.append(" result=");
    buffer.append(" result=\"");
    buffer.append(abandonOperation.getResultCode());
    buffer.append("\"");
    MessageBuilder msg = abandonOperation.getErrorMessage();
    if ((msg != null) && (msg.length() > 0))
    {