From 079b348773eb03f2b471467e5280ed387d802002 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 6 Mar 2013 12:18:45 -0800 Subject: [PATCH] more log output in failed emscripten subprocesses --- emscripten.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emscripten.py b/emscripten.py index 08ae85c5e..b698654bb 100755 --- a/emscripten.py +++ b/emscripten.py @@ -238,7 +238,7 @@ def emscript(infile, settings, outfile, libraries=[], compiler_engine=None, outputs = [output.split('//FORWARDED_DATA:') for output in outputs] for output in outputs: - assert len(output) == 2, 'Did not receive forwarded data in an output - process failed? We only got: ' + output[0][-300:] + assert len(output) == 2, 'Did not receive forwarded data in an output - process failed? We only got: ' + output[0][-3000:] if DEBUG: print >> sys.stderr, ' emscript: phase 2 took %s seconds' % (time.time() - t) if DEBUG: t = time.time()