Skip to content

Commit

Permalink
Respond to started log message change (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon authored Apr 12, 2022
1 parent e23f16e commit 2283072
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static bool TryParse(string line,
private static bool TryGetStartedConfirmation(string section, string message)
{
var inNodeSection = section == "o.e.n.Node" || section == "node";
return inNodeSection && message == "started";
return inNodeSection && (message == "started" || message.StartsWith("started {", StringComparison.Ordinal));
}

public static bool TryGetPortNumber(string section, string message, out int port)
Expand Down

0 comments on commit 2283072

Please sign in to comment.