Remove rotation vector log 87/268787/1
authorTaeminYeom <taemin.yeom@samsung.com>
Mon, 3 Jan 2022 03:34:08 +0000 (12:34 +0900)
committerTaeminYeom <taemin.yeom@samsung.com>
Mon, 3 Jan 2022 03:34:08 +0000 (12:34 +0900)
Change-Id: I2bedf87234948b81d020dc08a3e01c231f493047
Signed-off-by: TaeminYeom <taemin.yeom@samsung.com>
src/fusion-sensor/rotation_vector/gyro_rv_sensor.cpp
src/fusion-sensor/rotation_vector/magnetic_rv_sensor.cpp
src/fusion-sensor/rotation_vector/rv_sensor.cpp

index cc410da..d64d279 100644 (file)
@@ -95,7 +95,7 @@ int gyro_rv_sensor::update(uint32_t id, sensor_data_t *data, int len)
        m_time = timestamp;
        m_accuracy = data->accuracy;
 
-       _D("[rotation_vector] : [%10f] [%10f] [%10f] [%10f]", m_x, m_y, m_z, m_w);
+       //_D("[rotation_vector] : [%10f] [%10f] [%10f] [%10f]", m_x, m_y, m_z, m_w);
        return OP_SUCCESS;
 }
 
index 7c67727..6c4606a 100644 (file)
@@ -95,7 +95,7 @@ int magnetic_rv_sensor::update(uint32_t id, sensor_data_t *data, int len)
        m_time = timestamp;
        m_accuracy = data->accuracy;
 
-       _D("[rotation_vector] : [%10f] [%10f] [%10f] [%10f]", m_x, m_y, m_z, m_w);
+       //_D("[rotation_vector] : [%10f] [%10f] [%10f] [%10f]", m_x, m_y, m_z, m_w);
        return OP_SUCCESS;
 }
 
index 9e447d6..a7a6049 100644 (file)
@@ -101,7 +101,7 @@ int rv_sensor::update(uint32_t id, sensor_data_t *data, int len)
        m_time = timestamp;
        m_accuracy = data->accuracy;
 
-       _D("[rotation_vector] : [%10f] [%10f] [%10f] [%10f]", m_x, m_y, m_z, m_w);
+       //_D("[rotation_vector] : [%10f] [%10f] [%10f] [%10f]", m_x, m_y, m_z, m_w);
        return OP_SUCCESS;
 }