Skip to content

Commit

Permalink
- fixed log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzybol committed Jul 12, 2024
1 parent e1ee0bf commit 250d143
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public int getMaxDistance(String spawnerName){
// Retrieve the SpawnerData object corresponding to the spawnerName
SpawnerData spawnerData = spawnersData.get(spawnerName);
// Return the cooldown value
pluginLogger.log(PluginLogger.LogLevel.SPAWNERS, "Spawner '" + spawnerName + "' spawnerData.maxDistance: "+spawnerData.maxDistance);
//pluginLogger.log(PluginLogger.LogLevel.SPAWNERS, "Spawner '" + spawnerName + "' spawnerData.maxDistance: "+spawnerData.maxDistance);
return spawnerData.maxDistance;
} else {
// If the spawnerName is not found, log an error and return a default value or throw an exception
Expand Down

0 comments on commit 250d143

Please sign in to comment.