Remove spurious logging.

When logging was enabled, the log was a little *too*
verbose, making it unreadable. Removing some of the
more frequently hit log messages.

BUG: b/32942120
TEST: Can run camera samples
Change-Id: I136c20279699e4c87b3ef1c3042b88c20c301002
diff --git a/modules/camera/3_4/camera.cpp b/modules/camera/3_4/camera.cpp
index d4be03d..2dcf1c7 100644
--- a/modules/camera/3_4/camera.cpp
+++ b/modules/camera/3_4/camera.cpp
@@ -394,7 +394,6 @@
 {
     int res;
 
-    ALOGV("%s:%d: request=%p", __func__, mId, temp_request);
     ATRACE_CALL();
 
     if (temp_request == NULL) {
@@ -406,8 +405,7 @@
     // past the end of this method.
     std::shared_ptr<CaptureRequest> request = std::make_shared<CaptureRequest>(temp_request);
 
-    ALOGV("%s:%d: Request Frame:%d", __func__, mId,
-            request->frame_number);
+    ALOGV("%s:%d: frame: %d", __func__, mId, request->frame_number);
 
     // Null/Empty indicates use last settings
     if (request->settings.isEmpty() && !mSettingsSet) {