Examples of SimpleFormatter


Examples of java.util.logging.SimpleFormatter

        if (formatterName != null) {
            try {
                setFormatter((Formatter) cl.loadClass(formatterName).newInstance());
            } catch (Exception e) {
                // Ignore and fallback to defaults
                setFormatter(new SimpleFormatter());
            }
        } else {
            setFormatter(new SimpleFormatter());
        }
       
        // Set error manager
        setErrorManager(new ErrorManager());
       
View Full Code Here

Examples of java.util.logging.SimpleFormatter

*/
public class JDKLogHandler extends Handler
{
   public JDKLogHandler()
   {
      super.setFormatter(new SimpleFormatter());
   }
View Full Code Here

Examples of java.util.logging.SimpleFormatter

            }
            else if(logFile.isDirectory()) {
                logFile = new File(logFile.getAbsolutePath()+ Config.getPathSeparator()+"aesh.log");
            }
            logHandler = new FileHandler(logFile.getAbsolutePath());
            logHandler.setFormatter(new SimpleFormatter());
        }
        catch (IOException e) {
            e.printStackTrace();
        }
View Full Code Here

Examples of java.util.logging.SimpleFormatter

   *          whether or not this is in debug mode
   */
  public synchronized void debug(boolean debug) {
    this.debug = debug;
    if (debug && debugHandler == null) {
      debugHandler = new StreamHandler(System.out, new SimpleFormatter());
      debugHandler.setLevel(Level.ALL);
    }
  }
View Full Code Here

Examples of java.util.logging.SimpleFormatter

                setFormatter((Formatter) cl.loadClass(formatterName).newInstance());
            } catch (Exception e) {
                // Ignore
            }
        } else {
            setFormatter(new SimpleFormatter());
        }
       
        // Set error manager
        setErrorManager(new ErrorManager());
       
View Full Code Here

Examples of java.util.logging.SimpleFormatter

        if (formatterName != null) {
            try {
                setFormatter((Formatter) cl.loadClass(formatterName).newInstance());
            } catch (Exception e) {
                // Ignore and fallback to defaults
                setFormatter(new SimpleFormatter());
            }
        } else {
            setFormatter(new SimpleFormatter());
        }
       
        // Set error manager
        setErrorManager(new ErrorManager());
       
View Full Code Here

Examples of java.util.logging.SimpleFormatter

    private PaxLoggingService m_logService;

    public JdkHandler( PaxLoggingService logService )
    {
        m_logService = logService;
        setFormatter( new SimpleFormatter() );
    }
View Full Code Here

Examples of java.util.logging.SimpleFormatter

                setFormatter((Formatter) cl.loadClass(formatterName).newInstance());
            } catch (Exception e) {
                // Ignore
            }
        } else {
            setFormatter(new SimpleFormatter());
        }
       
        // Set error manager
        setErrorManager(new ErrorManager());
       
View Full Code Here

Examples of java.util.logging.SimpleFormatter

    }

    @BeforeClass
    public static void redirectLoggerOutput() throws IOException {
        logOutput = new ByteArrayOutputStream();
        logHandler = new StreamHandler(logOutput, new SimpleFormatter());
        logHandler.setLevel(Level.ALL);
        LOGGER.addHandler(logHandler);
    }
View Full Code Here

Examples of java.util.logging.SimpleFormatter

  public void test(TestHarness th)
  {
    Logger al;
    Throwable caught;
    TestFilter filter = new TestFilter();
    Formatter formatter = new SimpleFormatter();

    try
      {
        sec.install();
        // This used to be 'sec.setGrantLoggingControl(false)', but that
        // causes Logger.getAnonymousLogger() to fail on JDK 1.4.2. 
        // Stephen Crawley: 2004-05-11
        sec.setGrantLoggingControl(true);

        // Check #1.
        al = Logger.getAnonymousLogger();
        th.check(al != null);

        // Check #2: New instance for each call.
        th.check(al != Logger.getAnonymousLogger());

        // Check #3.
        al = Logger.getAnonymousLogger();
        th.check(al.getName(), null);

        // Check #4.
        th.check(al.getResourceBundle(), null);

        // Check #5.
        th.check(al.getResourceBundleName(), null);

        // Check #6: Parent is root logger.
        th.check(al.getParent(), Logger.getLogger(""));

        // Check #7.
        al.setFilter(filter);
        al.setUseParentHandlers(false);
        al.setLevel(Level.FINEST);
        al.entering("Class", "method", "txt");
        th.check(formatter.formatMessage(filter.getLastRecord()), "ENTRY txt");

        // Check #8.
        al = Logger.getAnonymousLogger(TestResourceBundle.class.getName());
        th.check(al.getResourceBundle() instanceof TestResourceBundle);

        // Check #9.
        al.setFilter(filter);
        al.setUseParentHandlers(false);
        al.setLevel(Level.FINEST);
        al.entering("Class", "method", "txt");
        th.check(formatter.formatMessage(filter.getLastRecord()), "BETRETEN txt");

        // Check #10.
        try
          {
            Logger.getAnonymousLogger("garbageClassName");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.