| Index: tools/telemetry/telemetry/core/backends/chrome/inspector_console.py
|
| diff --git a/tools/telemetry/telemetry/core/backends/chrome/inspector_console.py b/tools/telemetry/telemetry/core/backends/chrome/inspector_console.py
|
| index f1321c8ff9ea035c4e5c391dc387b4845fb86f10..525f0489999393f2122d998a4914e05c0f461cc2 100644
|
| --- a/tools/telemetry/telemetry/core/backends/chrome/inspector_console.py
|
| +++ b/tools/telemetry/telemetry/core/backends/chrome/inspector_console.py
|
| @@ -1,8 +1,6 @@
|
| # Copyright 2013 The Chromium Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
| -import json
|
| -import logging
|
|
|
|
|
| class InspectorConsole(object):
|
| @@ -17,7 +15,6 @@ class InspectorConsole(object):
|
| self._console_enabled = False
|
|
|
| def _OnNotification(self, msg):
|
| - logging.debug('Notification: %s', json.dumps(msg, indent=2))
|
| if msg['method'] == 'Console.messageAdded':
|
| if msg['params']['message']['url'] == 'chrome://newtab/':
|
| return
|
|
|