Switch the services library to using the new Slog
diff --git a/services/java/com/android/server/ViewServer.java b/services/java/com/android/server/ViewServer.java
index e9a1951..ae00438 100644
--- a/services/java/com/android/server/ViewServer.java
+++ b/services/java/com/android/server/ViewServer.java
@@ -16,7 +16,7 @@
 
 package com.android.server;
 
-import android.util.Log;
+import android.util.Slog;
 
 import java.net.ServerSocket;
 import java.net.Socket;
@@ -129,7 +129,7 @@
                 mServer = null;
                 return true;
             } catch (IOException e) {
-                Log.w(LOG_TAG, "Could not close the view server");
+                Slog.w(LOG_TAG, "Could not close the view server");
             }
         }
         return false;
@@ -191,7 +191,7 @@
                     }
 
                     if (!result) {
-                        Log.w(LOG_TAG, "An error occured with the command: " + command);
+                        Slog.w(LOG_TAG, "An error occured with the command: " + command);
                     }
                 } finally {
                     if (in != null) {
@@ -199,7 +199,7 @@
                     }
                 }
             } catch (Exception e) {
-                Log.w(LOG_TAG, "Connection error: ", e);
+                Slog.w(LOG_TAG, "Connection error: ", e);
             } finally {
                 if (client != null) {
                     try {