Skip to content

Commit

Permalink
Fix info message for RunTask in debug mode (#57974) (#58005)
Browse files Browse the repository at this point in the history
Fixes #57860
  • Loading branch information
breskeby authored Jun 12, 2020
1 parent 494aaa3 commit d7222fe
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 d7222fe

Please sign in to comment.