diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2023-09-26 22:38:49 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2023-09-26 22:39:27 +0200 |
commit | 0ca7438f1bd0569ea3c26581e827e21cc4b2f5e6 (patch) | |
tree | 8704eaf3cd8eaa0c53b416a1866155f94fbda301 /org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java | |
parent | cf9d0548550817be9ec80675f8a5c23f0fea31e0 (diff) | |
download | jgit-0ca7438f1bd0569ea3c26581e827e21cc4b2f5e6.tar.gz jgit-0ca7438f1bd0569ea3c26581e827e21cc4b2f5e6.zip |
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
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java index 55edf79281..d6c5a81454 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java @@ -92,7 +92,7 @@ public enum ShutdownHook { } private void notify(Listener l) { - LOG.warn(JGitText.get().shutdownCleanup, l); + LOG.debug(JGitText.get().shutdownCleanup, l); try { l.onShutdown(); } catch (RuntimeException e) { |