[revert] Disable monitor error logging to stdout #5692

This commit is contained in:
Eric Liang
2019-09-14 22:32:48 -07:00
committed by GitHub
parent 4979b8c4d9
commit 09968a3c55
+1 -2
View File
@@ -115,8 +115,7 @@ class LogMonitor(object):
log_file_paths = glob.glob("{}/worker*[.out|.err]".format(
self.logs_dir))
# segfaults and other serious errors are logged here
raylet_err_paths = (glob.glob("{}/raylet*.err".format(self.logs_dir)) +
glob.glob("{}/monitor*.err".format(self.logs_dir)))
raylet_err_paths = glob.glob("{}/raylet*.err".format(self.logs_dir))
for file_path in log_file_paths + raylet_err_paths:
if os.path.isfile(
file_path) and file_path not in self.log_filenames: