From 549103d9cb530cd8a91d9daa3fc0966e3282b708 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Thu, 4 Jan 2018 08:35:19 +0100 Subject: [PATCH] Change warning for not found task to debug As this is not really issue, as in this case the icon just falls back to the default gem icon, this should not really be a warning message and spam console logs. Fixes #292 Signed-off-by: Tomas Slusny --- .../java/net/runelite/client/plugins/slayer/SlayerPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/slayer/SlayerPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/slayer/SlayerPlugin.java index d7629dd926..73596c94f1 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/slayer/SlayerPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/slayer/SlayerPlugin.java @@ -283,7 +283,7 @@ public class SlayerPlugin extends Plugin int itemSpriteId = ItemID.ENCHANTED_GEM; if (task == null) { - log.warn("No slayer task for {} in the Task database", taskName); + log.debug("No slayer task for {} in the Task database", taskName); } else {