Package com.subgraph.vega.application.logging

Examples of com.subgraph.vega.application.logging.LogHandler


  private void setupLogging() {
    Logger rootLogger = Logger.getLogger("");

    IConsole console = Activator.getDefault().getConsole();
    if(console != null) {
      Handler handler = new LogHandler(console);
      handler.setFormatter(new LogFormatter());
      handler.setLevel(Level.FINEST);
      for(Handler h: rootLogger.getHandlers())
        rootLogger.removeHandler(h);
      rootLogger.addHandler(handler);
    }
   
View Full Code Here

TOP

Related Classes of com.subgraph.vega.application.logging.LogHandler

Copyright © 2018 www.massapicom. 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.