Bug 1539603 - Remove obsolete references to MediaPipelineFactory logging; r=jmaher

Other than the MediaPipelineFactory references, nothing else is obsolete, so this is a
very minor cleanup, just to improve readability a bit.

Differential Revision: https://phabricator.services.mozilla.com/D25124

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Geoff Brown 2019-03-28 00:13:48 +00:00
Родитель e90bcb5786
Коммит fe297ae528
4 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -211,7 +211,7 @@ class Automation(object):
env['XRE_NO_WINDOWS_CRASH_DIALOG'] = '1'
# Set WebRTC logging in case it is not set yet
env.setdefault('MOZ_LOG', 'signaling:3,mtransport:4,DataChannel:4,jsep:4,MediaPipelineFactory:4')
env.setdefault('MOZ_LOG', 'signaling:3,mtransport:4,DataChannel:4,jsep:4')
env.setdefault('R_LOG_LEVEL', '6')
env.setdefault('R_LOG_DESTINATION', 'stderr')
env.setdefault('R_LOG_VERBOSE', '1')

Просмотреть файл

@ -101,9 +101,6 @@ class RemoteAutomation(Automation):
env.setdefault('MOZ_IN_AUTOMATION', '1')
# Set WebRTC logging in case it is not set yet.
# On Android, environment variables cannot contain ',' so the
# standard WebRTC setting for NSPR_LOG_MODULES is not available.
# env.setdefault('NSPR_LOG_MODULES', 'signaling:5,mtransport:5,datachannel:5,jsep:5,MediaPipelineFactory:5') # NOQA: E501
env.setdefault('R_LOG_LEVEL', '6')
env.setdefault('R_LOG_DESTINATION', 'stderr')
env.setdefault('R_LOG_VERBOSE', '1')

Просмотреть файл

@ -26,7 +26,7 @@ class DeviceRunner(BaseRunner):
'MOZ_CRASHREPORTER_NO_REPORT': '1',
'MOZ_CRASHREPORTER_SHUTDOWN': '1',
'MOZ_HIDE_RESULTS_TABLE': '1',
'MOZ_LOG': 'signaling:3,mtransport:4,DataChannel:4,jsep:4,MediaPipelineFactory:4',
'MOZ_LOG': 'signaling:3,mtransport:4,DataChannel:4,jsep:4',
'R_LOG_LEVEL': '6',
'R_LOG_DESTINATION': 'stderr',
'R_LOG_VERBOSE': '1', }

Просмотреть файл

@ -135,7 +135,7 @@ def test_environment(xrePath, env=None, crashreporter=True, debugger=False,
# Set WebRTC logging in case it is not set yet
env.setdefault(
'MOZ_LOG',
'signaling:3,mtransport:4,DataChannel:4,jsep:4,MediaPipelineFactory:4'
'signaling:3,mtransport:4,DataChannel:4,jsep:4'
)
env.setdefault('R_LOG_LEVEL', '6')
env.setdefault('R_LOG_DESTINATION', 'stderr')