From 0ca7438f1bd0569ea3c26581e827e21cc4b2f5e6 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 26 Sep 2023 22:38:49 +0200 Subject: 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 --- org.eclipse.jgit/src/org/eclipse/jgit/internal/util/ShutdownHook.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'org.eclipse.jgit') 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) { -- cgit v1.2.3