diff options
author | Joe Onorato <joeo@android.com> | 2010-02-26 18:56:32 -0800 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2010-03-01 13:06:50 -0800 |
commit | 8a9b22056b13477f59df934928c00c58b5871c95 (patch) | |
tree | ba3f00f16d2f0b744de34b49da37f4df2da7e95e /services/java/com/android/server/VibratorService.java | |
parent | 0ec40173b6875cf5ab0b95fb0b2e480f18bfcfbf (diff) | |
download | frameworks_base-8a9b22056b13477f59df934928c00c58b5871c95.zip frameworks_base-8a9b22056b13477f59df934928c00c58b5871c95.tar.gz frameworks_base-8a9b22056b13477f59df934928c00c58b5871c95.tar.bz2 |
Switch the services library to using the new Slog
Diffstat (limited to 'services/java/com/android/server/VibratorService.java')
-rwxr-xr-x | services/java/com/android/server/VibratorService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/java/com/android/server/VibratorService.java b/services/java/com/android/server/VibratorService.java index 5282ba2..2e7e3e1 100755 --- a/services/java/com/android/server/VibratorService.java +++ b/services/java/com/android/server/VibratorService.java @@ -29,7 +29,7 @@ import android.os.RemoteException; import android.os.IBinder; import android.os.Binder; import android.os.SystemClock; -import android.util.Log; +import android.util.Slog; import java.util.LinkedList; import java.util.ListIterator; @@ -155,7 +155,7 @@ public class VibratorService extends IVibratorService.Stub { for (int i=0; i<N; i++) { s += " " + pattern[i]; } - Log.i(TAG, "vibrating with pattern: " + s); + Slog.i(TAG, "vibrating with pattern: " + s); } // we're running in the server so we can't fail |