have eden debug log show the end of the log file by default

Summary: 90% of the time, it's more useful to see the end of the log than the beginning.

Reviewed By: simpkins

Differential Revision: D19560473

fbshipit-source-id: f9b5a922d284053d6afc8ea889586826e3c58582
This commit is contained in:
Chad Austin 2020-01-24 13:20:29 -08:00 committed by Facebook Github Bot
parent c717ef0d7d
commit 9db11e9454

View File

@ -667,7 +667,7 @@ class LogCmd(Subcmd):
if pager_env:
pager_cmd = shlex.split(pager_env)
else:
pager_cmd = ["less"]
pager_cmd = ["less", "+G"]
pager_cmd.append(str(eden_log_path))
os.execvp(pager_cmd[0], pager_cmd)