aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-batch')
-rw-r--r--sonar-batch/src/main/java/org/sonar/batch/bootstrap/CheckSemaphore.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/CheckSemaphore.java b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/CheckSemaphore.java
index c3f7a6086e4..7ea91681fe3 100644
--- a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/CheckSemaphore.java
+++ b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/CheckSemaphore.java
@@ -70,7 +70,7 @@ public class CheckSemaphore {
}
private Lock acquire() {
- LOG.debug("Acquire semaphore on project : {}", getProject());
+ LOG.debug("Acquire semaphore on project : {}, with key {}", getProject(), getSemaphoreKey());
if (!isForceAnalyseActivated()) {
return semaphoreDao.acquire(getSemaphoreKey());
} else {
@@ -79,7 +79,7 @@ public class CheckSemaphore {
}
private void release() {
- LOG.debug("Release semaphore on project : {}", getProject());
+ LOG.debug("Release semaphore on project : {}, with key {}", getProject(), getSemaphoreKey());
semaphoreDao.release(getSemaphoreKey());
}