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

logging behavior in applet changed

    XMLWordPrintable

Details

    • b02
    • Verified

    Backports

      Description

        the following code works 7u11 as applet:

        import java.applet.Applet;
        import java.util.logging.*;

        public class Hello extends Applet {

              private static final Logger log = Logger.getLogger("Hello");

           @Override
           public void init() {
              log.info("Hello!!");
              System.out.println("mmmhhhh....");
           }
           // TODO overwrite start(), stop() and destroy() methods
        }


        Java console would show output:

        05-feb-2013 11:18:50 Hello init
        INFO: Hello!!


        With 7u13 - it does not output in java console

        Attachments

          Issue Links

            Activity

              People

                mchung Mandy Chung
                ngthomas Thomas Ng (Inactive)
                Votes:
                0 Vote for this issue
                Watchers:
                6 Start watching this issue

                Dates

                  Created:
                  Updated:
                  Resolved: