Skip to content

Commit

Permalink
[revert] Disable monitor error logging to stdout #5692
Browse files Browse the repository at this point in the history
  • Loading branch information
ericl authored Sep 15, 2019
1 parent 4979b8c commit 09968a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/ray/log_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ def update_log_filenames(self):
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:
Expand Down

0 comments on commit 09968a3

Please sign in to comment.