Skip to content

Commit

Permalink
specify full player.log path
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdeitke committed May 27, 2022
1 parent 33660f0 commit a634e28
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ai2thor/fifo_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ def _recv_message(self):
self.unity_proc.wait(timeout=5)
returncode = self.unity_proc.returncode
message = (
"Unity process has exited - check Player.log for errors. Last action message: %s, returncode=%s"
"Unity process has exited - check "
"~/.config/unity3d/Allen\ Institute\ for\ "
"Artificial\ Intelligence/AI2-THOR/Player.log for errors. "
f"Last action message: %s, returncode=%s"
% (self._last_action_message, self.unity_proc.returncode)
)
# we don't want to restart all process exits since its possible that a user
Expand Down

0 comments on commit a634e28

Please sign in to comment.