diff --git a/include/infer_tensor.h b/include/infer_tensor.h index 2ba04a1803e..3a8b203b3e6 100644 --- a/include/infer_tensor.h +++ b/include/infer_tensor.h @@ -76,7 +76,8 @@ class InferTensorBase { } auto ret = memcpy_s(mutable_data(), data_size(), data, data_len); if (ret != 0) { - MS_LOG(EXCEPTION) << "Set data memcpy_s failed"; + MSI_LOG_ERROR << "Set data memcpy_s failed"; + return false; } return true; }