mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
13 lines
251 B
Java
13 lines
251 B
Java
package io.ebeaninternal.api;
|
|
|
|
/**
|
|
* API for Plugins to define the logger for io.ebean.SQL, io.ebean.TXN and io.ebean.SUM.
|
|
*/
|
|
public interface SpiLoggerFactory {
|
|
|
|
/**
|
|
* Create the logger given the name.
|
|
*/
|
|
SpiLogger create(String name);
|
|
}
|