All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.api.SpiLogger Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebeaninternal.api;

/**
 * Logger for SQL, TXN and Summary logging.
 * 

* In general at runtime this uses SLF4J Logger but this abstraction allows us to capture * the logged SQL during testing such that we can assert against the executed sql if desired. *

*/ public interface SpiLogger { /** * Is debug logging enabled. */ boolean isDebug(); /** * Log a debug level message. */ void debug(String msg, Object... args); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy