Chromium Code Reviews| Index: telemetry/telemetry/testing/run_tests.py |
| diff --git a/telemetry/telemetry/testing/run_tests.py b/telemetry/telemetry/testing/run_tests.py |
| index 961ea6ced7bbc439d6128e78e12357495093f7c0..c0e503415e64f58a341bf0c0131ea29173cb3a18 100644 |
| --- a/telemetry/telemetry/testing/run_tests.py |
| +++ b/telemetry/telemetry/testing/run_tests.py |
| @@ -227,14 +227,9 @@ def _SetUpProcess(child, context): # pylint: disable=unused-argument |
| # Typ doesn't keep the DependencyManager initialization in the child |
| # processes. |
| binary_manager.InitDependencyManager(context.client_config) |
| + args = context |
| # We need to reset the handlers in case some other parts of telemetry already |
| # set it to make this work. |
| - logging.getLogger().handlers = [] |
| - logging.basicConfig( |
| - level=logging.INFO, |
| - format='(%(levelname)s) %(asctime)s %(module)s.%(funcName)s:%(lineno)d ' |
| - '%(message)s') |
| - args = context |
| if not args.disable_logging_config: |
| logging.getLogger().handlers = [] |
|
achuithb
2016/03/15 23:28:43
Note these repeated lines, I believe there was a b
|
| logging.basicConfig( |