Fix a couple error messages

This commit is contained in:
James Seibel
2025-01-09 21:23:43 -06:00
parent 2936215f46
commit ffc982ba55
2 changed files with 2 additions and 3 deletions
@@ -67,10 +67,9 @@ public abstract class PhantomArrayListParent implements AutoCloseable
}
catch (Exception e)
{
LOGGER.error("", e);
LOGGER.error("Unable to close Phantom Array", e);
}
}
}
@@ -409,7 +409,7 @@ public class PhantomArrayListPool
{
if (checkout == null)
{
throw new IllegalArgumentException("Null phantom checkout, memory leak in progress...");
throw new IllegalArgumentException("Null phantom checkout, object is being closed multiple times.");
}