This is an automated email from the ASF dual-hosted git repository.

apkhmv pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 78a4b821b5 IGNITE-22750 log node start errors in error logging level 
(#4093)
78a4b821b5 is described below

commit 78a4b821b5462834ffc2f46eacaefd7c72ed7e48
Author: Viacheslav Blinov <[email protected]>
AuthorDate: Tue Jul 16 15:01:29 2024 +0300

    IGNITE-22750 log node start errors in error logging level (#4093)
---
 .../runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java 
b/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java
index 1894034173..6b95061e39 100644
--- 
a/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java
+++ 
b/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java
@@ -1252,7 +1252,7 @@ public class IgniteImpl implements Ignite {
     private RuntimeException handleStartException(Throwable e) {
         String errMsg = "Unable to start [node=" + name + "]";
 
-        LOG.debug(errMsg, e);
+        LOG.error(errMsg, e);
 
         IgniteException igniteException = new IgniteException(errMsg, e);
 

Reply via email to