From 41d78c48ccb02ccf03cf2563d7242f1948863084 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Mon, 13 Jun 2016 21:23:57 +0000 Subject: [PATCH] Removal of spiritshot spam log. --- trunk/java/com/l2jmobius/gameserver/model/stats/Stats.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/trunk/java/com/l2jmobius/gameserver/model/stats/Stats.java b/trunk/java/com/l2jmobius/gameserver/model/stats/Stats.java index 66ae33118c..c804095d35 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/stats/Stats.java +++ b/trunk/java/com/l2jmobius/gameserver/model/stats/Stats.java @@ -19,7 +19,6 @@ package com.l2jmobius.gameserver.model.stats; import java.util.NoSuchElementException; import java.util.Optional; import java.util.function.BiFunction; -import java.util.logging.Level; import java.util.logging.Logger; import com.l2jmobius.commons.util.MathUtil; @@ -325,7 +324,7 @@ public enum Stats } catch (Exception e) { - LOGGER.log(Level.WARNING, "Exception during finalization for : " + creature + " stat: " + toString() + " : ", e); + // LOGGER.log(Level.WARNING, "Exception during finalization for : " + creature + " stat: " + toString() + " : ", e); return defaultValue(creature, baseValue, this); } }