From 0731e97b7ace63743e8f21968ec47bc5c9ef4d6f Mon Sep 17 00:00:00 2001 From: Alexey Sosnoviy Date: Tue, 11 Oct 2022 09:01:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BD=D0=B8=D0=B7=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=83=D1=80=D0=BE=D0=B2=D0=B5=D0=BD=D1=8C=20=D0=BE=D1=88=D0=B8?= =?UTF-8?q?=D0=B1=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_1c_syntax/bsl/languageserver/ParentProcessWatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/_1c_syntax/bsl/languageserver/ParentProcessWatcher.java b/src/main/java/com/github/_1c_syntax/bsl/languageserver/ParentProcessWatcher.java index d91c544dc43..b7f419bf099 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/languageserver/ParentProcessWatcher.java +++ b/src/main/java/com/github/_1c_syntax/bsl/languageserver/ParentProcessWatcher.java @@ -70,7 +70,7 @@ public void watch() { .orElse(false); if (!processIsAlive) { - LOGGER.error("Parent process with pid {} is not found. Closing application...", parentProcessId); + LOGGER.info("Parent process with pid {} is not found. Closing application...", parentProcessId); languageServer.exit(); } }