Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-7111548

unexpected debug log message

    XMLWordPrintable

Details

    • b15
    • generic
    • generic
    • Verified

    Description

      JSSE debug log:
      ..., called closeSocket(selfInitiated)

      It is expected to log:
      ..., called closeSocket(true)
      Or
      ..., called closeSocket(false)

      Need to update SSLSocketImpl.closeSocket(boolean selfInitiated):
          if ((debug != null) && Debug.isOn("ssl")) {
              System.out.println(threadName() + ", called closeSocket(selfInitiated)");
          }

      To
          if ((debug != null) && Debug.isOn("ssl")) {
              System.out.println(threadName() + ", called closeSocket(" + selfInitiated + ")");
          }

      Attachments

        Activity

          People

            xuelei Xuelei Fan
            xuelei Xuelei Fan
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: