Skip to content

Commit

Permalink
fixme: dont use --enable-logging on the ffmpeg verify phase
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Oct 10, 2018
1 parent a5c3091 commit 2b8ef34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/verify-ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def main():
'no-proprietary-codecs.js')
env = dict(os.environ)
env['ELECTRON_ENABLE_STACK_DUMPING'] = 'true'
env['ELECTRON_ENABLE_LOGGING'] = 'true'
# FIXME: Enable after ELECTRON_ENABLE_LOGGING works again
# env['ELECTRON_ENABLE_LOGGING'] = 'true'
subprocess.check_call([electron, test_path] + sys.argv[1:], env=env)
except subprocess.CalledProcessError as e:
returncode = e.returncode
Expand Down

0 comments on commit 2b8ef34

Please sign in to comment.