diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-06 12:18:45 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-06 12:18:45 -0800 |
commit | 079b348773eb03f2b471467e5280ed387d802002 (patch) | |
tree | e5c7e4a48e8382f45f199b498dfae88f209910ac /emscripten.py | |
parent | 1979e5ccd8b0637f087a547f157769ff02cb7b48 (diff) |
more log output in failed emscripten subprocesses
Diffstat (limited to 'emscripten.py')
-rwxr-xr-x | emscripten.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emscripten.py b/emscripten.py index 08ae85c5..b698654b 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() |