Skip to content

Commit 4152d32

Browse files
author
Robin Duda
committed
Launcher: set log level to severe on fail to deploy.
1 parent bd67112 commit 4152d32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/main/java/com/codingchili/core/Launcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ private void deployServices(List<String> nodes) {
155155
var future = deployments.get(i);
156156

157157
if (future.failed()) {
158-
logger.event(LOG_SERVICE_FAIL)
158+
logger.event(LOG_SERVICE_FAIL, Level.SEVERE)
159159
.put(ID_SERVICE, nodes.get(i))
160160
.put(LOG_ERROR, throwableToString(future.cause()))
161161
.send();

0 commit comments

Comments
 (0)