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/common.h b/modules/camera/3_4/common.h
index e77c0b2..ca5151d 100644
--- a/modules/camera/3_4/common.h
+++ b/modules/camera/3_4/common.h
@@ -39,6 +39,14 @@
     ALOGW_IF(cond, "%s:%d: " fmt, __func__, __LINE__, ##args);  \
   } while(0)
 
+#define HAL_LOGI(fmt, args...) do { \
+    ALOGI("%s:%d: " fmt, __func__, __LINE__, ##args);   \
+  } while(0)
+
+#define HAL_LOGI_IF(cond, fmt, args...) do { \
+    ALOGI_IF(cond, "%s:%d: " fmt, __func__, __LINE__, ##args);  \
+  } while(0)
+
 #define HAL_LOGD(fmt, args...) do { \
     ALOGD("%s:%d: " fmt, __func__, __LINE__, ##args);   \
   } while(0)