add initialization Logging
This commit is contained in:
parent
7a40aebd6d
commit
6b86e9ff87
@ -1,11 +1,16 @@
|
||||
package net.tomatentum.marinara;
|
||||
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
||||
import net.tomatentum.marinara.registry.InteractionCheckRegistry;
|
||||
import net.tomatentum.marinara.registry.InteractionRegistry;
|
||||
import net.tomatentum.marinara.util.LoggerUtil;
|
||||
import net.tomatentum.marinara.wrapper.LibraryWrapper;
|
||||
|
||||
public class Marinara {
|
||||
|
||||
private Logger logger = LoggerUtil.getLogger(getClass());
|
||||
|
||||
public static <T extends LibraryWrapper> Marinara load(LibraryWrapper wrapper) {
|
||||
return new Marinara(wrapper);
|
||||
}
|
||||
@ -18,6 +23,7 @@ public class Marinara {
|
||||
this.wrapper = wrapper;
|
||||
this.registry = new InteractionRegistry(this);
|
||||
this.checkRegistry = new InteractionCheckRegistry();
|
||||
logger.info("Marinara loaded successfully!");
|
||||
}
|
||||
|
||||
public InteractionRegistry getRegistry() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user