aboutsummaryrefslogtreecommitdiff
path: root/emrun
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2013-12-20 17:56:07 +0200
committerJukka Jylänki <jujjyl@gmail.com>2013-12-20 17:56:07 +0200
commit60ce3b1f5e986b8a9ec2d47fbea457d613f639d9 (patch)
treea84b42fa30e8f7cf03cee3d757f05c151a4b4029 /emrun
parent5ddcbbc02bf262811ffc72dd300f94d7dbaa57cb (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--emrun4
1 files changed, 3 insertions, 1 deletions
diff --git a/emrun b/emrun
index 976033fe..57fe85da 100644
--- a/emrun
+++ b/emrun
@@ -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)