Skip to content

Commit d261bad

Browse files
author
John Zhao
committed
refactor(channel): remove useless log
1 parent 4d29d18 commit d261bad

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/mynteye/device/channel/channels.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,6 @@ bool Channels::GetFiles(
460460
while (i < end) {
461461
std::uint8_t file_id = *(data + i);
462462
std::uint16_t file_size = bytes::_from_data<std::uint16_t>(data + i + 1);
463-
LOG(INFO) << "GetFiles:data_size : " << file_size;
464463
VLOG(2) << "GetFiles id: " << static_cast<int>(file_id)
465464
<< ", size: " << file_size;
466465
i += 3;

src/mynteye/device/channel/file_channel.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ std::size_t FileChannel::GetDeviceInfoFromData(
3232
const std::uint8_t *data, const std::uint16_t &data_size,
3333
device_info_t *info) {
3434
auto n = dev_info_parser_->GetFromData(data, data_size, info);
35-
LOG(INFO) << "GetDeviceInfoFromData:data_size : " << data_size;
3635
auto spec_version = info->spec_version;
3736
img_params_parser_->SetSpecVersion(spec_version);
3837
imu_params_parser_->SetSpecVersion(spec_version);

0 commit comments

Comments
 (0)