Removed unnecessary double spaces from log messages.

This commit is contained in:
MobiusDevelopment
2023-01-09 00:33:08 +00:00
parent 9a3d55e768
commit 4a2ddb08c5
88 changed files with 90 additions and 90 deletions

View File

@@ -80,7 +80,7 @@ public class HellboundSpawns implements IXmlReader
final Node id = npc.getAttributes().getNamedItem("id");
if (id == null)
{
LOGGER.severe(getClass().getSimpleName() + ": Missing NPC ID, skipping record!");
LOGGER.severe(getClass().getSimpleName() + ": Missing NPC ID, skipping record!");
return;
}

View File

@@ -379,7 +379,7 @@ public class TaskManager
}
catch (SQLException e)
{
LOGGER.log(Level.WARNING, TaskManager.class.getSimpleName() + ": Cannot add the task: " + e.getMessage(), e);
LOGGER.log(Level.WARNING, TaskManager.class.getSimpleName() + ": Cannot add the task: " + e.getMessage(), e);
}
return false;
}