This commit is contained in:
jdar 2024-08-26 10:27:56 -07:00
parent 72a837cb10
commit b1eb4ca046
2 changed files with 5 additions and 4 deletions

View File

@ -57,7 +57,8 @@ public class DeleteExpungeSvcImpl implements IDeleteExpungeSvc<JpaPid> {
List<String> sqlList = sqlResult.getSqlStatements(); List<String> sqlList = sqlResult.getSqlStatements();
String formattedChunkIdForLogMessage = ""; String formattedChunkIdForLogMessage = "";
if (theWorkChunk instanceof WorkChunk && !((WorkChunk) theWorkChunk).getId().isBlank()) { if (theWorkChunk instanceof WorkChunk
&& !((WorkChunk) theWorkChunk).getId().isBlank()) {
formattedChunkIdForLogMessage = "Chunk[" + ((WorkChunk) theWorkChunk).getId() + "] - "; formattedChunkIdForLogMessage = "Chunk[" + ((WorkChunk) theWorkChunk).getId() + "] - ";
} }