From 78fe5c813de19613d57d94e677a8306add7f0c98 Mon Sep 17 00:00:00 2001 From: TinyO Date: Sun, 29 Sep 2019 16:46:40 +0800 Subject: [PATCH] style(imu): remove useless log. --- src/mynteye/device/channel/channels.cc | 6 +----- src/mynteye/device/standard2/channels_adapter_s2.cc | 1 - 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/mynteye/device/channel/channels.cc b/src/mynteye/device/channel/channels.cc index 4134e03..5f7197d 100644 --- a/src/mynteye/device/channel/channels.cc +++ b/src/mynteye/device/channel/channels.cc @@ -879,11 +879,7 @@ bool Channels::XuImuRead(ImuResPacket2 *res) const { << " now"; return false; } - // LOG(INFO) << res->size; - if (enable_imu_correspondence) { - LOG(INFO) << "enable_imu_correspondence"; - } else { - } + VLOG(2) << "XuImuRead response success"; return true; } else { diff --git a/src/mynteye/device/standard2/channels_adapter_s2.cc b/src/mynteye/device/standard2/channels_adapter_s2.cc index 4e6ba06..2f9d2b1 100644 --- a/src/mynteye/device/standard2/channels_adapter_s2.cc +++ b/src/mynteye/device/standard2/channels_adapter_s2.cc @@ -134,7 +134,6 @@ void unpack_imu_segment2(const ImuData2 &imu, ImuSegment2 *seg) { seg->accel[1] = 0.; seg->accel[2] = 0.; } else if (seg->flag == 3) { - LOG(INFO) << "flag3"; seg->gyro[0] = imu.accel_or_gyro[0]; seg->gyro[1] = imu.accel_or_gyro[1]; seg->gyro[2] = imu.accel_or_gyro[2];