Index: tools/telemetry/telemetry/core/platform/device.py |
diff --git a/tools/telemetry/telemetry/core/platform/device.py b/tools/telemetry/telemetry/core/platform/device.py |
index 091f7a3e2e54c85d3d70d97cbc8682ab9791edef..bb21a1e4530620eb023a99250846930731211ebe 100644 |
--- a/tools/telemetry/telemetry/core/platform/device.py |
+++ b/tools/telemetry/telemetry/core/platform/device.py |
@@ -1,6 +1,7 @@ |
# Copyright 2014 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 logging as real_logging |
class Device(object): |
@@ -28,5 +29,5 @@ |
return self._guid |
@classmethod |
- def GetAllConnectedDevices(cls): |
+ def GetAllConnectedDevices(cls, logging=real_logging): |
raise NotImplementedError() |