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

boli
24.33.2007 63388c6b9aed18ac18523d05ab7a3ceff69559e4
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
opends/src/server/org/opends/server/loggers/debug/DebugTracer.java 2 ●●● patch | view | raw | blame | history
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;
        }