Skip to content

Commit 8342ba9

Browse files
committed
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.
1 parent 0755ff4 commit 8342ba9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

qa/wildfly/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ task startWildfly {
122122
String line
123123
int httpPort = 0
124124
while ((line = br.readLine()) != null) {
125+
logger.info(line)
125126
if (line.matches('.*Undertow HTTP listener default listening on .*:\\d+$')) {
126127
assert httpPort == 0
127128
final int index = line.lastIndexOf(":")

0 commit comments

Comments
 (0)