This commit is contained in:
Looly
2023-03-13 01:11:43 +08:00
parent f05e084a3b
commit 5b559d19bd
94 changed files with 320 additions and 309 deletions

View File

@@ -14,6 +14,7 @@ import io.github.logtube.core.IEventLogger;
* @since 5.6.6
*/
public class LogTubeLog extends AbstractLog {
private static final long serialVersionUID = 1L;
private final IEventLogger logger;

View File

@@ -19,9 +19,6 @@ public class LogTest {
log.debug("This is {} log", Level.DEBUG);
log.info("This is {} log", Level.INFO);
log.warn("This is {} log", Level.WARN);
// Exception e = new Exception("test Exception");
// log.error(e, "This is {} log", Level.ERROR);
}
/**