Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit da28f71

Browse files
committed
Changing logging of waiting for tasks and a count to INFO
1 parent c7a1d89 commit da28f71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/marklogic/mgmt/tasks/TaskManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ public void waitForTasksToComplete(String group, int retryInSeconds) {
121121
}
122122
int count = mgr.getRequestCountForRelationId(taskServerId);
123123
while (count > 0) {
124-
if (logger.isDebugEnabled()) {
125-
logger.debug("Waiting for tasks to complete on task server, count: " + count);
124+
if (logger.isInfoEnabled()) {
125+
logger.info("Waiting for tasks to complete on task server, count: " + count);
126126
}
127127
try {
128128
Thread.sleep(retryInSeconds * 1000);

0 commit comments

Comments
 (0)