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

boli
24.33.2007 0ce0585ee64f9dec3bb2b9ae01c6adb7cdca544a
Fixed an issue where debug messages are printed to the console when running unit tests. This also corrects the issue where the incorrect 
method signature is printed in debug messages on Java 5.
1 files modified
2 ■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/loggers/debug/DebugTracer.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/loggers/debug/DebugTracer.java
@@ -1152,7 +1152,7 @@
      for (int i = 0; i < stackTrace.length; i++)
      {
        StackTraceElement aStackTrace = stackTrace[i];
        if(i == 0 && aStackTrace.getClassName().equals("java.lang.Thread"))
        if(aStackTrace.getClassName().startsWith("java.lang.Thread"))
        {
          continue;
        }