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

boli
16.24.2007 085b5eb00471d1a45da880125c72976854927ceb
Fixed issue where the startup loggers will close the System.out stream when they are shutdown. 

Fix for issue 1609
1 files modified
4 ■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/loggers/TextWriter.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/loggers/TextWriter.java
@@ -87,7 +87,7 @@
     */
    public void shutdown()
    {
      writer.close();
      // Should never close the system out stream.
    }
    /**
@@ -128,7 +128,7 @@
     */
    public void shutdown()
    {
      writer.close();
      // Should never close the system error stream.
    }
    /**