[jvm-packages] Change log level for tracker message. (#7968)

This commit is contained in:
Jiaming Yuan
2022-06-09 18:15:08 +08:00
committed by GitHub
parent 8f8bd8147a
commit bb47fd8c49

View File

@@ -55,7 +55,7 @@ public class RabitTracker implements IRabitTracker {
String line;
try {
while ((line = reader.readLine()) != null) {
trackerProcessLogger.error(line);
trackerProcessLogger.info(line);
}
trackerProcess.get().waitFor();
int exitValue = trackerProcess.get().exitValue();