Skip to content

Commit

Permalink
Fix message on error log
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmeldrum committed Dec 13, 2023
1 parent 3e477b3 commit 70835f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void execute(CommandMessage request) {

CompletableFuture.runAsync(() -> configPush(request), configPushPool)
.exceptionally(e -> {
log.error("Error getting terraform variables", e);
log.error("Error running command", e);
Command firstCommand = request.getCommandBundles().get(0).getCommands().get(0);
setCommandError(firstCommand, (Exception) e);
sendResponse(request);
Expand Down

0 comments on commit 70835f4

Please sign in to comment.