OSDN Git Service

Remove some logs.
authorWu-cheng Li <wuchengli@google.com>
Wed, 10 Feb 2010 05:01:48 +0000 (13:01 +0800)
committerWu-cheng Li <wuchengli@google.com>
Wed, 10 Feb 2010 05:02:17 +0000 (13:02 +0800)
libs/ui/Camera.cpp
libs/ui/ICamera.cpp

index 09a36f1..f374fbc 100644 (file)
@@ -281,7 +281,7 @@ String8 Camera::getParameters() const
 // send command to camera driver
 status_t Camera::sendCommand(int32_t cmd, int32_t arg1, int32_t arg2)
 {
-    LOGD("sendCommand");
+    LOGV("sendCommand");
     sp <ICamera> c = mCamera;
     if (c == 0) return NO_INIT;
     return c->sendCommand(cmd, arg1, arg2);
index e1b3ec7..4154b05 100644 (file)
@@ -344,7 +344,7 @@ status_t BnCamera::onTransact(
             return NO_ERROR;
          } break;
         case SEND_COMMAND: {
-            LOGD("SEND_COMMAND");
+            LOGV("SEND_COMMAND");
             CHECK_INTERFACE(ICamera, data, reply);
             int command = data.readInt32();
             int arg1 = data.readInt32();