add stderr print

This commit is contained in:
Matt Worzala 2021-06-12 09:29:00 -04:00
parent 831dd6d610
commit a84bc7be46
No known key found for this signature in database
GPG Key ID: 439DBBE092854841

View File

@ -116,6 +116,9 @@ public class ResourceGatherer {
new BufferedReader( new BufferedReader(
new InputStreamReader(dataGeneratorProcess.getInputStream()) new InputStreamReader(dataGeneratorProcess.getInputStream())
).lines().forEach(LOGGER::info); ).lines().forEach(LOGGER::info);
new BufferedReader(
new InputStreamReader(dataGeneratorProcess.getErrorStream())
).lines().forEach(LOGGER::error);
LOGGER.info(""); LOGGER.info("");
try { try {