!8784 dataset: change log level from info to debug to avoid print so much info log

From: @ms_yan
Reviewed-by: @pandoublefeng,@heleiwang
Signed-off-by: @heleiwang
This commit is contained in:
mindspore-ci-bot 2020-11-20 09:30:06 +08:00 committed by Gitee
commit 6f6925805e
1 changed files with 2 additions and 2 deletions

View File

@ -128,8 +128,8 @@ TdtStatus TdtPlugin::translate(const TensorRow &ts_row, std::vector<DataItem> &i
data_item.dataPtr_ =
std::shared_ptr<void>(reinterpret_cast<uchar *>(&(*ts->begin<uint8_t>())), [](const void *elem) {});
items.emplace_back(data_item);
MS_LOG(INFO) << "TDT data type is TDT_TENSOR, tensor type is " << datatype << ", tensor shape is " << dataShapes
<< ", data length is " << ts->Size() << ".";
MS_LOG(DEBUG) << "TDT data type is TDT_TENSOR, tensor type is " << datatype << ", tensor shape is " << dataShapes
<< ", data length is " << ts->Size() << ".";
}
return SUCCESS;
}