diff options
| author | Krakenied <Krakenied1@gmail.com> | 2024-05-22 15:19:52 +0200 |
|---|---|---|
| committer | Leonardo Bishop <13875753+LMBishop@users.noreply.github.com> | 2024-06-03 18:48:22 +0100 |
| commit | 46d0e7b5aaabf613e6387228727d313ac8ddb0cf (patch) | |
| tree | 3e141fa36ffab640d3380b73e15f402a546f401a /bukkit/src/main/java | |
| parent | e48e4a8015f6b5fcf11c4a872b71b9c3ee8b7c7d (diff) | |
Do not log the entire boss bar exception
Closes https://github.com/LMBishop/Quests/issues/659
Closes https://github.com/LMBishop/Quests/issues/637
Diffstat (limited to 'bukkit/src/main/java')
| -rw-r--r-- | bukkit/src/main/java/com/leonardobishop/quests/bukkit/hook/bossbar/BossBar_Bukkit.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/hook/bossbar/BossBar_Bukkit.java b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/hook/bossbar/BossBar_Bukkit.java index 1cb1c27d..7645cfe6 100644 --- a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/hook/bossbar/BossBar_Bukkit.java +++ b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/hook/bossbar/BossBar_Bukkit.java @@ -121,7 +121,9 @@ public class BossBar_Bukkit implements QuestsBossBar { throw new IllegalStateException(type + " section is empty"); } } catch (IllegalArgumentException | IllegalStateException e) { - plugin.getLogger().log(Level.SEVERE, "Could not set " + type + " for the initialized boss bar implementation, using default instead!", e); + plugin.getLogger().log(Level.SEVERE, "Could not set " + type + " for the initialized boss bar implementation, using default instead!"); + plugin.getLogger().log(Level.SEVERE, "Update your config to latest version! (" + e.getMessage() + ")"); + plugin.getLogger().log(Level.SEVERE, "https://github.com/LMBishop/Quests/blob/master/bukkit/src/main/resources/resources/bukkit/config.yml"); map = Collections.singletonMap(0.0f, def); } return map; |
