Browse Source

fixme: dont use --enable-logging on the ffmpeg verify phase

Samuel Attard 6 years ago
parent
commit
2b8ef344b7
1 changed files with 2 additions and 1 deletions
  1. 2 1
      script/verify-ffmpeg.py

+ 2 - 1
script/verify-ffmpeg.py

@@ -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