diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-12-20 17:56:07 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-12-20 17:56:07 +0200 |
commit | 60ce3b1f5e986b8a9ec2d47fbea457d613f639d9 (patch) | |
tree | a84b42fa30e8f7cf03cee3d757f05c151a4b4029 /emrun | |
parent | 5ddcbbc02bf262811ffc72dd300f94d7dbaa57cb (diff) |
Add verbose debug print to emrun exit to troubleshoot linux process hang issue when spawning chrome browser.
Diffstat (limited to 'emrun')
-rw-r--r-- | emrun | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1073,4 +1073,6 @@ def main(): return page_exit_code if __name__ == '__main__': - sys.exit(main()) + returncode = main() + logv('emrun quitting with process exit code ' + str(returncode)) + sys.exit(returncode) |