commit | 3109cf539b54e7b1ed36c015d5216f9f3ceaddde | [log] [tgz] |
---|---|---|
author | Michael Blow <mblow@apache.org> | Wed Mar 13 23:03:19 2019 -0400 |
committer | Michael Blow <mblow@apache.org> | Thu Mar 14 06:36:57 2019 -0700 |
tree | 4f4d745432bc55120a783c27f510299cfe3a3dbd | |
parent | 3e14ced362d7ddf371d524b478882ad72d74249a [diff] |
[NO ISSUE][HYR] Log thread dump at shutdown at DEBUG level Change-Id: I29b3e01caa5b8747163fb6b2dbcee268549455c6 Reviewed-on: https://asterix-gerrit.ics.uci.edu/3275 Sonar-Qube: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Contrib: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Integration-Tests: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Reviewed-by: Murtadha Hubail <mhubail@apache.org>
diff --git a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/NCShutdownHook.java b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/NCShutdownHook.java index 9a19f8e..ffa02d6 100644 --- a/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/NCShutdownHook.java +++ b/hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/NCShutdownHook.java
@@ -45,7 +45,7 @@ LOGGER.info("Shutdown hook called"); } catch (Throwable th) {//NOSONAR } - LOGGER.log(Level.INFO, () -> "Thread dump at shutdown: " + ThreadDumpUtil.takeDumpString()); + LOGGER.log(Level.DEBUG, () -> "Thread dump at shutdown: " + ThreadDumpUtil.takeDumpString()); nodeControllerService.stop(); } catch (Throwable th) { // NOSONAR... This is fine since this is shutdown hook LOGGER.log(Level.WARN, "Exception in executing shutdown hook", th);