zentol commented on code in PR #19819:
URL: https://github.com/apache/flink/pull/19819#discussion_r881697420
##########
flink-tests/src/test/java/org/apache/flink/runtime/operators/lifecycle/TestJobExecutor.java:
##########
@@ -77,28 +77,28 @@ private TestJobExecutor(
public static TestJobExecutor execute(
TestJobWithDescription testJob, MiniClusterWithClientResource
miniClusterResource)
throws Exception {
- LOG.debug("submitGraph: {}", testJob.jobGraph);
+ LOG.info("submitGraph: {}", testJob.jobGraph);
JobID job =
miniClusterResource.getClusterClient().submitJob(testJob.jobGraph).get();
waitForAllTaskRunning(miniClusterResource.getMiniCluster(), job,
false);
return new TestJobExecutor(testJob, job, miniClusterResource);
}
public TestJobExecutor waitForAllRunning() throws Exception {
- LOG.debug("waitForAllRunning in {}", jobID);
+ LOG.info("waitForAllRunning in {}", jobID);
Review Comment:
Why not change the log level to DEBUG for this particular class in
tools/ci/log4j.properties=
##########
flink-tests/src/test/java/org/apache/flink/runtime/operators/lifecycle/TestJobExecutor.java:
##########
@@ -77,28 +77,28 @@ private TestJobExecutor(
public static TestJobExecutor execute(
TestJobWithDescription testJob, MiniClusterWithClientResource
miniClusterResource)
throws Exception {
- LOG.debug("submitGraph: {}", testJob.jobGraph);
+ LOG.info("submitGraph: {}", testJob.jobGraph);
JobID job =
miniClusterResource.getClusterClient().submitJob(testJob.jobGraph).get();
waitForAllTaskRunning(miniClusterResource.getMiniCluster(), job,
false);
return new TestJobExecutor(testJob, job, miniClusterResource);
}
public TestJobExecutor waitForAllRunning() throws Exception {
- LOG.debug("waitForAllRunning in {}", jobID);
+ LOG.info("waitForAllRunning in {}", jobID);
Review Comment:
Why not change the log level to DEBUG for this particular class in
tools/ci/log4j.properties?
--
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]