You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (answerListQueue.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode()) && (answerListQueue.getDataList().isEmpty())) {
397
-
LOG.debug("No More executions (in queue or running) on tag : " + tag + " - " + answerListQueue.getDataList().size() + " " + answerListQueue.getMessageCodeString() + " - ");
397
+
LOG.debug("No More executions (in queue or running) on tag : {} - {} {}", tag, answerListQueue.getDataList().size(), answerListQueue.getMessageCodeString());
398
398
this.updateEndOfQueueData(tag);
399
399
} else {
400
-
LOG.debug("Still executions in queue on tag : " + tag + " - " + answerListQueue.getDataList().size() + " " +answerListQueue.getMessageCodeString());
400
+
LOG.debug("Still executions in queue on tag : {} - {} {}", tag, answerListQueue.getDataList().size(),answerListQueue.getMessageCodeString());
401
401
}
402
402
} else {
403
-
LOG.debug("Tag is already flaged with recent timestamp. " +currentTag.getDateEndQueue());
403
+
LOG.debug("Tag is already flagged with recent timestamp. {}",currentTag.getDateEndQueue());
404
404
}
405
405
406
406
}
@@ -422,7 +422,7 @@ public void manageCampaignStartOfExecution(String tag, Timestamp startOfExecutio
422
422
currentTag.setDateStartExe(startOfExecution);
423
423
tagDAO.updateDateStartExe(currentTag);
424
424
} else {
425
-
LOG.debug("Tag is already flaged with recent start of exe timestamp. " +currentTag.getDateStartExe());
425
+
LOG.debug("Tag is already flaged with recent start of exe timestamp. {}",currentTag.getDateStartExe());
426
426
}
427
427
428
428
}
@@ -483,8 +483,7 @@ public String formatResult(Tag tag) {
0 commit comments