Skip to content

Commit

Permalink
Add logging output when starting Wildfly
Browse files Browse the repository at this point in the history
This commit (which will be reverted soon) adds logging on the output of
starting Wildfly. This is needed to debug an issue with Wildfly not
starting in CI.
  • Loading branch information
jasontedor committed Mar 16, 2018
1 parent 0755ff4 commit 8342ba9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions qa/wildfly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ task startWildfly {
String line
int httpPort = 0
while ((line = br.readLine()) != null) {
logger.info(line)
if (line.matches('.*Undertow HTTP listener default listening on .*:\\d+$')) {
assert httpPort == 0
final int index = line.lastIndexOf(":")
Expand Down

0 comments on commit 8342ba9

Please sign in to comment.