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

Some methods of System.Logger are unimplemented in PlatformLogger

    XMLWordPrintable

Details

    • web

    Description

      Following methods are unimplemented,

          @Override
          public String getName() {
             throw new UnsupportedOperationException("not implemented");
          }

          @Override
          public boolean isLoggable(System.Logger.Level level) {
              throw new UnsupportedOperationException("not implemented");
          }

          @Override
          public void log(System.Logger.Level level, ResourceBundle bundle, String format, Object... params) {
              throw new UnsupportedOperationException("not implemented");
          }

          @Override
          public void log(System.Logger.Level level, ResourceBundle bundle, String msg, Throwable thrown) {
              throw new UnsupportedOperationException("not implemented");
          }

      Among those, getName() is used in JavaFX PerfLogger implementation. Implementing those would be trivial and straightforward.

      Attachments

        Issue Links

          Activity

            People

              arajkumar Arunprasad Rajkumar
              arajkumar Arunprasad Rajkumar
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: