Fix some debugging messages.

This commit is contained in:
graywolf336 2014-03-06 12:14:18 -06:00
parent 4f90a99cd5
commit 47949a9373

View File

@ -415,7 +415,7 @@ public class JailIO {
try {
PreparedStatement cds = con.prepareStatement("delete from " + prefix + "cells where cellid in (" + names + ");");
pl.debug("Deleting old prisoners: 'delete from " + prefix + "cells where cellid in (" + names + ");'");
pl.debug("Deleting old cells: 'delete from " + prefix + "cells where cellid in (" + names + ");'");
int count = cds.executeUpdate();
pl.getLogger().info("Deleted " + count + " old cells which referenced a jail no longer valid: " + names);