Index: tools/telemetry/telemetry/__init__.py |
diff --git a/tools/telemetry/telemetry/__init__.py b/tools/telemetry/telemetry/__init__.py |
index 2586c2572490a0fcc01f249ef748c773be3b7498..a77b39e36f6376d9d8cb8bca746d55cdad8048bb 100644 |
--- a/tools/telemetry/telemetry/__init__.py |
+++ b/tools/telemetry/telemetry/__init__.py |
@@ -3,6 +3,7 @@ |
# found in the LICENSE file. |
"""A library for cross-platform browser tests.""" |
+import logging |
import os |
import sys |
@@ -55,3 +56,8 @@ _AddDirToPythonPath(util.GetTelemetryThirdPartyDir(), 'websocket-client') |
# Install Telemtry global hooks. |
global_hooks.InstallHooks() |
+ |
+logging.warn( |
+ 'Telemetry has moved to Catapult, and will be deleted from Chromium on ' |
+ '2016-01-29. Please use Telemetry from third_party/catapult/telemetry ' |
+ 'instead.') |