diff options
author | Thomas Wolf <twolf@apache.org> | 2023-09-26 17:40:52 -0400 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2023-09-26 17:40:52 -0400 |
commit | e8955fb506f121f7800eabb02432e19fe66c7761 (patch) | |
tree | 176a7a763256b8efc9786dd2a9cb84f2c48de728 /org.eclipse.jgit/src/org/eclipse/jgit | |
parent | 39707c673a29021008baadde3c96e765637cf019 (diff) | |
parent | 0ca7438f1bd0569ea3c26581e827e21cc4b2f5e6 (diff) | |
download | jgit-e8955fb506f121f7800eabb02432e19fe66c7761.tar.gz jgit-e8955fb506f121f7800eabb02432e19fe66c7761.zip |
Merge "Fix log level for successful execution of ShutdownHook#notify to debug"
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit')
-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) { |