Skip to content

Commit 2c7880d

Browse files
Increase logging level for startQueuedDownload
1 parent 2891f56 commit 2c7880d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/icatproject/topcat/StatusCheck.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,12 +409,12 @@ public void startQueuedDownload(int maxActiveDownloads) throws Exception {
409409
Map<String, String> sessionIds = new HashMap<>();
410410
if (maxActiveDownloads <= 0) {
411411
// No limits on how many to submit
412-
logger.trace("Preparing 1 out of {} queued downloads", queueSize);
412+
logger.info("Preparing 1 out of {} queued downloads", queueSize);
413413
Download queuedDownload = queuedDownloads.get(0);
414414
queuedDownload.setStatus(DownloadStatus.PREPARING);
415415
prepareDownload(queuedDownload, null, getQueueSessionId(sessionIds, queuedDownload.getFacilityName()));
416416
} else {
417-
logger.trace("Preparing 1 out of {} queued downloads as {} spaces available", queueSize, availableDownloads);
417+
logger.info("Preparing 1 out of {} queued downloads as {} spaces available", queueSize, availableDownloads);
418418
HashMap<Integer, List<Download>> mapping = new HashMap<>();
419419
for (Download queuedDownload : queuedDownloads) {
420420
String sessionId = getQueueSessionId(sessionIds, queuedDownload.getFacilityName());

0 commit comments

Comments
 (0)