Add logging output when starting Wildfly

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.
This commit is contained in:
Jason Tedor 2018-03-16 10:50:37 -04:00
parent 0755ff425f
commit 8342ba9108

View File

@ -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(":")