Michael Blow has uploaded a new change for review.
https://asterix-gerrit.ics.uci.edu/3275
Change subject: [NO ISSUE][HYR] Log thread dump at shutdown at DEBUG level
......................................................................
[NO ISSUE][HYR] Log thread dump at shutdown at DEBUG level
Change-Id: I29b3e01caa5b8747163fb6b2dbcee268549455c6
---
M
hyracks-fullstack/hyracks/hyracks-control/hyracks-control-nc/src/main/java/org/apache/hyracks/control/nc/NCShutdownHook.java
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb
refs/changes/75/3275/1
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);
--
To view, visit https://asterix-gerrit.ics.uci.edu/3275
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I29b3e01caa5b8747163fb6b2dbcee268549455c6
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Michael Blow <[email protected]>