Browse Source

change log level from info to debug to avoid so many(full screen) info log there

tags/v1.1.0
ms_yan 5 years ago
parent
commit
d452a4e29e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mindspore/ccsrc/minddata/dataset/engine/tdt/tdt_plugin.cc

+ 2
- 2
mindspore/ccsrc/minddata/dataset/engine/tdt/tdt_plugin.cc View File

@@ -128,8 +128,8 @@ TdtStatus TdtPlugin::translate(const TensorRow &ts_row, std::vector<DataItem> &i
data_item.dataPtr_ = data_item.dataPtr_ =
std::shared_ptr<void>(reinterpret_cast<uchar *>(&(*ts->begin<uint8_t>())), [](const void *elem) {}); std::shared_ptr<void>(reinterpret_cast<uchar *>(&(*ts->begin<uint8_t>())), [](const void *elem) {});
items.emplace_back(data_item); 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; return SUCCESS;
} }


Loading…
Cancel
Save