diff --git a/paper/api/src/main/kotlin/net/revive/framework/plugin/ExtendedKotlinPlugin.kt b/paper/api/src/main/kotlin/net/revive/framework/plugin/ExtendedKotlinPlugin.kt index 26a0443..2f4d8b3 100644 --- a/paper/api/src/main/kotlin/net/revive/framework/plugin/ExtendedKotlinPlugin.kt +++ b/paper/api/src/main/kotlin/net/revive/framework/plugin/ExtendedKotlinPlugin.kt @@ -125,7 +125,11 @@ open class ExtendedKotlinPlugin : ExtendedJavaPlugin(), IConfigProvider { } this.packageIndexer - .getMethodsAnnotatedWith() + .getMethodsAnnotatedWith().also { + if (it.isEmpty()) { + logger.info("THERE WERE NO CONTAINER PRE NEABLED!!?!?") + } + } .forEach { kotlin.runCatching { it.invoke(this) diff --git a/paper/core/src/main/kotlin/net/revive/framework/PaperFrameworkPlugin.kt b/paper/core/src/main/kotlin/net/revive/framework/PaperFrameworkPlugin.kt index 832dffb..fe46fa1 100644 --- a/paper/core/src/main/kotlin/net/revive/framework/PaperFrameworkPlugin.kt +++ b/paper/core/src/main/kotlin/net/revive/framework/PaperFrameworkPlugin.kt @@ -184,6 +184,7 @@ class PaperFrameworkPlugin : ExtendedKotlinPlugin() { @ContainerPreEnable fun containerPreEnable() { + logger.info("DOING CONTAINER PRE ENABLE") Tasks.plugin = this saveDefaultConfig() Framework.supply(PaperFramework) {