From: Ciaran Gultnieks Date: Tue, 19 Nov 2013 22:40:35 +0000 (+0000) Subject: Revert "Stop excessive build output" X-Git-Tag: 0.1~163 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5c64a0c6a7b8f4b0be89b93b0374152d604ffca7;p=fdroidserver.git Revert "Stop excessive build output" This reverts commit 7ca5955cac5816203522b6d2fe3e57879b648e5d. Temporarily reverting because it's better, but somehow losing some build error detail for the build logs that go to the wiki. Excessive output is better than missing output for now. --- diff --git a/fdroidserver/build.py b/fdroidserver/build.py index 7ea32217..e724a6db 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -915,7 +915,7 @@ def main(): logfile = open(os.path.join(log_dir, app['id'] + '.log'), 'a+') logfile.write(str(be)) logfile.close() - print "Could not build app %s due to BuildException: %s" % (app['id'], be.value) + print "Could not build app %s due to BuildException: %s" % (app['id'], be) if options.stop: sys.exit(1) failed_apps[app['id']] = be