Make logger public

Good for encompassing logs EX a hanging System.out log can be passed back to the extension that called it
This commit is contained in:
LeoDog896 2021-03-24 08:48:37 -04:00
parent 34a56cf00e
commit f2924b37a1

View File

@ -73,7 +73,7 @@ public abstract class Extension {
* @return The logger for the extension
*/
@NotNull
protected Logger getLogger() {
public Logger getLogger() {
return logger;
}