package org.jgroups.logging; /** * An extension interface allowing to plug in a custom log provider. Set the * jgroups.logclass with the fully qualified class name of your implementation * in order for jgroups to use it. */ public interface CustomLogFactory { Log getLog(Class clazz); Log getLog(String category); }