Michael Blow has submitted this change and it was merged. Change subject: Log ResultStateSweeper As Finer, Test Default Level->INFO ......................................................................
Log ResultStateSweeper As Finer, Test Default Level->INFO Change-Id: Ie8e9408590734694ce1fa5840783adee8d7ce695 Reviewed-on: https://asterix-gerrit.ics.uci.edu/1176 Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> Integration-Tests: Jenkins <[email protected]> Reviewed-by: Till Westmann <[email protected]> --- M asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml M asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.adm M hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/dataset/ResultStateSweeper.java 3 files changed, 4 insertions(+), 4 deletions(-) Approvals: Till Westmann: Looks good to me, approved Jenkins: Verified; No violations found; Verified diff --git a/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml b/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml index 544f4ec..142b93a 100644 --- a/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml +++ b/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml @@ -47,7 +47,7 @@ <property> <name>log.level</name> - <value>WARNING</value> + <value>INFO</value> <description>Log level for running tests/build</description> </property> <property> diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.adm b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.adm index fc49cb1..8b66885 100644 --- a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.adm +++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.adm @@ -18,7 +18,7 @@ "feed.memory.global.budget": 67108864, "feed.pending.work.threshold": 50, "feed.port": 19003, - "log.level": "WARNING", + "log.level": "INFO", "max.wait.active.cluster": 60, "nc.java.opts": "-Xmx1024m", "plot.activate": false, diff --git a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/dataset/ResultStateSweeper.java b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/dataset/ResultStateSweeper.java index d17858b..150875b 100644 --- a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/dataset/ResultStateSweeper.java +++ b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-common/src/main/java/org/apache/hyracks/control/common/dataset/ResultStateSweeper.java @@ -75,8 +75,8 @@ datasetManager.deinitState(jobId); } } - if (LOGGER.isLoggable(Level.INFO)) { - LOGGER.info("Result state cleanup instance successfully completed."); + if (LOGGER.isLoggable(Level.FINER)) { + LOGGER.finer("Result state cleanup instance successfully completed."); } } } -- To view, visit https://asterix-gerrit.ics.uci.edu/1176 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ie8e9408590734694ce1fa5840783adee8d7ce695 Gerrit-PatchSet: 3 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Michael Blow <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]> Gerrit-Reviewer: Till Westmann <[email protected]>
