Add a log info re: releasing lock

This commit is contained in:
2024-08-01 15:02:20 -05:00
parent 09c4d99612
commit 3bcc0a17bc

View File

@ -433,6 +433,8 @@ public class ProcessLockUtils
{ {
throw (new QException("Error deleting processLock record: " + deleteOutput.getRecordsWithErrors().get(0).getErrorsAsString())); throw (new QException("Error deleting processLock record: " + deleteOutput.getRecordsWithErrors().get(0).getErrorsAsString()));
} }
LOG.info("Released process lock", logPair("id", processLock.getId()), logPair("key", processLock.getKey()), logPair("typeId", processLock.getProcessLockTypeId()), logPair("details", processLock.getDetails()));
} }
catch(QException e) catch(QException e)
{ {