[build] Output a message when can't find log file
When the build tries to start an elasticsearch instance but the start fails if it fails to find the log file then we log a line about how we can't find the file.
This commit is contained in:
parent
685a0462d8
commit
22873dc952
|
@ -275,6 +275,8 @@ class ClusterFormationTasks {
|
||||||
File logFile = new File(home, "logs/${clusterName}.log")
|
File logFile = new File(home, "logs/${clusterName}.log")
|
||||||
if (logFile.exists()) {
|
if (logFile.exists()) {
|
||||||
logFile.eachLine { line -> logger.error(line) }
|
logFile.eachLine { line -> logger.error(line) }
|
||||||
|
} else {
|
||||||
|
logger.error("Couldn't start elasticsearch and couldn't find ${logFile}")
|
||||||
}
|
}
|
||||||
throw new GradleException('Failed to start elasticsearch')
|
throw new GradleException('Failed to start elasticsearch')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue