Skip to content

Commit

Permalink
Fix info message for RunTask in debug mode (elastic#57974)
Browse files Browse the repository at this point in the history
  • Loading branch information
breskeby committed Jun 11, 2020
1 parent 0558052 commit d5fb803
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void beforeStart() {
node.setDataPath(getDataPath.apply(node));
}
if (debug) {
logger.lifecycle("Running elasticsearch in debug mode, {} suspending until connected on debugPort {}", node, debugPort);
logger.lifecycle("Running elasticsearch in debug mode, {} expecting running debug server on port {}", node, debugPort);
node.jvmArgs("-agentlib:jdwp=transport=dt_socket,server=n,suspend=y,address=" + debugPort);
debugPort += 1;
}
Expand Down

0 comments on commit d5fb803

Please sign in to comment.