Skip to content

Commit

Permalink
DBZ-5908 ConnectorLifecycle is not logging anymore the exception stac…
Browse files Browse the repository at this point in the history
…ktrace when startup fails
  • Loading branch information
ggaborg authored and jpechane committed Dec 8, 2022
1 parent 7f17bdf commit 23c2fca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void handle(boolean success, String message, Throwable error) {
LOGGER.info(logMessage);
}
else {
LOGGER.error(logMessage);
LOGGER.error(logMessage, error);
}
connectorCompletedEvent.fire(new ConnectorCompletedEvent(success, message, error));
live = false;
Expand Down

0 comments on commit 23c2fca

Please sign in to comment.