Skip to content

Commit 7c7497c

Browse files
committed
Merge remote-tracking branch 'apache/4.19' into 4.20
2 parents cd69f2c + 2e113e5 commit 7c7497c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/orchestration/src/main/java/com/cloud/agent/manager/AgentManagerImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1571,7 +1571,7 @@ protected void processRequest(final Link link, final Request request) {
15711571
}
15721572
}
15731573
} catch (final Throwable th) {
1574-
logger.warn("Caught: ", th);
1574+
logger.error("Caught: ", th);
15751575
answer = new Answer(cmd, false, th.getMessage());
15761576
}
15771577
answers[i] = answer;
@@ -1586,7 +1586,7 @@ protected void processRequest(final Link link, final Request request) {
15861586
try {
15871587
link.send(response.toBytes());
15881588
} catch (final ClosedChannelException e) {
1589-
logger.warn("Unable to send response because connection is closed: {}", response);
1589+
logger.error("Unable to send response because connection is closed: {}", response);
15901590
}
15911591
}
15921592

0 commit comments

Comments
 (0)