Skip to content

Commit e09b60d

Browse files
cryptobenchclaude
andcommitted
Add severe-level startup logs to verify plugin loading
Added SEVERE level logs at start of setup() and start() methods to confirm the plugin is loading and logging is working. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a958609 commit e09b60d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/main/java/com/landclaims/LandClaims.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ public LandClaims(JavaPluginInit init) {
4848

4949
@Override
5050
public void setup() {
51+
// Test logging - if you don't see this, logging isn't working
52+
getLogger().atSevere().log("========== LANDCLAIMS PLUGIN STARTING ==========");
53+
getLogger().atWarning().log("LandClaims setup() called - testing logging");
54+
getLogger().atInfo().log("LandClaims INFO level test");
55+
5156
// Initialize configuration
5257
config = new PluginConfig(getDataDirectory());
5358

@@ -99,7 +104,7 @@ public void setup() {
99104

100105
@Override
101106
public void start() {
102-
// Plugin started successfully
107+
getLogger().atSevere().log("========== LANDCLAIMS PLUGIN STARTED ==========");
103108
}
104109

105110
@Override

0 commit comments

Comments
 (0)