add initialization Logging
This commit is contained in:
		| @@ -1,10 +1,15 @@ | ||||
| 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() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user