diff --git a/mace/core/kv_storage.cc b/mace/core/kv_storage.cc index 9ff49688e29bc17f09d51692c0d4bcc683ba5223..5803a6d727edefb1831dc349ffcec90fc3c6df87 100644 --- a/mace/core/kv_storage.cc +++ b/mace/core/kv_storage.cc @@ -106,7 +106,7 @@ int FileStorage::Load() { auto status = fs->NewReadOnlyMemoryRegionFromFile( file_path_.c_str(), &kv_data); if (status != MaceStatus::MACE_SUCCESS) { - LOG(ERROR) << "Failed to read kv store file: " << file_path_; + LOG(WARNING) << "Failed to read kv store file: " << file_path_; return -1; } else { ParseKVData(static_cast(kv_data->data()), diff --git a/mace/utils/tuner.h b/mace/utils/tuner.h index 41a185fd836ca30e23c4758237a5fb826d59d7f2..45485234f04ee25cd10054f16bbc9341e3c0887b 100644 --- a/mace/utils/tuner.h +++ b/mace/utils/tuner.h @@ -167,8 +167,8 @@ class Tuner { auto status = fs->NewReadOnlyMemoryRegionFromFile( tuned_param_file_path_.c_str(), ¶m_data); if (status != MaceStatus::MACE_SUCCESS) { - LOG(ERROR) << "Failed to read tuned param file: " - << tuned_param_file_path_; + LOG(WARNING) << "Failed to read tuned param file: " + << tuned_param_file_path_; return; } else { ParseData(static_cast(param_data->data()),