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

gbellato
13.27.2007 38c3ea621bfec6788144bc803d25a62bb784dee5
fix a problem with the previous commit where 2 lines were in the wrong order
thus producing confusing access log message.
1 files modified
2 ■■■ changed files
opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/TestAccessLogger.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/TestAccessLogger.java
@@ -1041,9 +1041,9 @@
    buffer.append(" op=");
    buffer.append(operation.getOperationID());
    buffer.append(" msgID=");
    buffer.append(operation.getMessageID());
    buffer.append(" time=" + TimeThread.getTime());
    buffer.append(" thread=" + Thread.currentThread().getName());
    buffer.append(operation.getMessageID());
    buffer.append(" resultCode=\"");
    buffer.append(operation.getResultCode());
    buffer.append("\" message=\"");