From 09e85dc0270ac9ce660c17ee8290ff2d136b395b Mon Sep 17 00:00:00 2001 From: Christopher Tate Date: Mon, 2 Aug 2010 11:54:41 -0700 Subject: [PATCH] Mute a common-case progress log about input injection Change-Id: I37c9f5cb239ab93fde3a42f71f2782d8734c53ce --- services/java/com/android/server/WindowManagerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/java/com/android/server/WindowManagerService.java b/services/java/com/android/server/WindowManagerService.java index 5615232a74a8d..49403113c2c5b 100644 --- a/services/java/com/android/server/WindowManagerService.java +++ b/services/java/com/android/server/WindowManagerService.java @@ -5514,7 +5514,7 @@ public class WindowManagerService extends IWindowManager.Stub throw new SecurityException( "Injecting to another application requires INJECT_EVENTS permission"); case InputManager.INPUT_EVENT_INJECTION_SUCCEEDED: - Slog.v(TAG, "Input event injection succeeded."); + //Slog.v(TAG, "Input event injection succeeded."); return true; case InputManager.INPUT_EVENT_INJECTION_TIMED_OUT: Slog.w(TAG, "Input event injection timed out.");