Removed onEvtThink method debug message.

This commit is contained in:
MobiusDev
2018-09-11 13:36:06 +00:00
parent 3a373ee4d3
commit 43e04da970
14 changed files with 61 additions and 84 deletions

View File

@@ -24,7 +24,6 @@ import java.util.Comparator;
import java.util.List;
import java.util.Set;
import java.util.concurrent.Future;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Stream;
@@ -1202,11 +1201,13 @@ public class L2AttackableAI extends L2CharacterAI
}
catch (Exception e)
{
LOGGER.log(Level.WARNING, this + " - " + getIntention().toString() + " - onEvtThink() failed", e);
// LOGGER.warning(getClass().getSimpleName() + ": " + this.getActor().getName() + " - onEvtThink() failed!");
}
finally
{
// Stop thinking action
_thinking = false;
}
// Finish thinking action
_thinking = false;
}
/**

View File

@@ -784,7 +784,7 @@ public class L2Attackable extends L2Npc
final AggroInfo ai = _aggroList.get(target);
if (ai == null)
{
LOGGER.info("target " + target + " not present in aggro list of " + this);
LOGGER.info("Target " + target + " not present in aggro list of " + this);
return;
}