Package org.rzo.yajsw.tray.ahessian.server

Source Code of org.rzo.yajsw.tray.ahessian.server.AhessianLogging

package org.rzo.yajsw.tray.ahessian.server;

import java.util.logging.Logger;

import org.jboss.netty.logging.InternalLogger;
import org.jboss.netty.logging.InternalLoggerFactory;

public class AhessianLogging
{
  public static void setAhessianLogger(final Logger log)
  {
    InternalLoggerFactory.setDefaultFactory(new InternalLoggerFactory()
    {

      @Override
      public InternalLogger newInstance(String name)
      {
        return (InternalLogger) new JdkLogger(log, "ahessian-jmx" );
      }     
    });
  }

}
TOP

Related Classes of org.rzo.yajsw.tray.ahessian.server.AhessianLogging

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.