kfaraz commented on code in PR #17702:
URL: https://github.com/apache/druid/pull/17702#discussion_r1946593853
##########
indexing-service/src/main/java/org/apache/druid/indexing/seekablestream/supervisor/SeekableStreamSupervisor.java:
##########
@@ -1692,21 +1692,20 @@ public void runInternal()
// if suspended, ensure tasks have been requested to gracefully stop
if
(stateManager.getSupervisorState().getBasicState().equals(SupervisorStateManager.BasicState.STOPPING))
{
// if we're already terminating, don't do anything here, the
terminate already handles shutdown
- log.info("[%s] supervisor is already stopping.", dataSource);
+ log.debug("Supervisor for datasource[%s] is already stopping.",
dataSource);
} else if (stateManager.isIdle()) {
- log.info("[%s] supervisor is idle.", dataSource);
+ log.debug("Supervisor for datasource[%s] is idle.", dataSource);
} else if (!spec.isSuspended()) {
- log.info("[%s] supervisor is running.", dataSource);
-
+ log.debug("Supervisor for datasource[%s] is running.", dataSource);
stateManager.maybeSetState(SeekableStreamSupervisorStateManager.SeekableStreamState.CREATING_TASKS);
createNewTasks();
} else {
- log.info("[%s] supervisor is suspended.", dataSource);
+ log.info("Supervisor for datasource[%s] is suspended.", dataSource);
Review Comment:
Had you intended to make this log debug too?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]