]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4898 remove misleading warning log
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 30 Jul 2014 12:04:21 +0000 (14:04 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 30 Jul 2014 12:04:21 +0000 (14:04 +0200)
server/sonar-process/src/main/java/org/sonar/process/ProcessWrapper.java

index eb1d6e60196ac11ac0fa7c6b74bf5a9d7153183c..f5773a294b1e563a3721cfef663acf6d9e172988 100644 (file)
@@ -278,8 +278,8 @@ public class ProcessWrapper extends Thread implements Terminable {
         killerFuture.cancel(true);
         LOGGER.info("{} process stopped", getName());
 
-      } catch (Exception e) {
-        LOGGER.warn("Failed to terminate " + getName(), e);
+      } catch (Exception ignored) {
+        // ignore
       } finally {
         killer.shutdownNow();
       }