Fix log level for successful execution of ShutdownHook#notify to debug

This is debug trace and shouldn't be logged as a warning.

Change-Id: Ibb24e91e857a05aa6b74b0e2c5b11ab057f6206a
This commit is contained in:
Matthias Sohn 2023-09-26 22:38:49 +02:00
parent cf9d054855
commit 0ca7438f1b
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ private void doCleanup() {
}
private void notify(Listener l) {
LOG.warn(JGitText.get().shutdownCleanup, l);
LOG.debug(JGitText.get().shutdownCleanup, l);
try {
l.onShutdown();
} catch (RuntimeException e) {