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

logging behavior in applet changed

XMLWordPrintable

    • b02
    • Verified

        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

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

                Created:
                Updated:
                Resolved: