diff --git a/platform/local_country_file_utils.cpp b/platform/local_country_file_utils.cpp index 77ec96bd43..8098165e5c 100644 --- a/platform/local_country_file_utils.cpp +++ b/platform/local_country_file_utils.cpp @@ -322,7 +322,7 @@ bool CountryIndexes::DeleteFromDisk(LocalCountryFile const & localFile) string const path = GetPath(localFile, index); if (Platform::IsFileExistsByFullPath(path) && !my::DeleteFileX(path)) { - LOG(LERROR, ("Can't remove country index:", path)); + LOG(LWARNING, ("Can't remove country index:", path)); ok = false; } } @@ -330,7 +330,7 @@ bool CountryIndexes::DeleteFromDisk(LocalCountryFile const & localFile) Platform::EError const ret = Platform::RmDir(directory); if (ret != Platform::ERR_OK && ret != Platform::ERR_FILE_DOES_NOT_EXIST) { - LOG(LERROR, ("Can't remove indexes directory:", directory, ret)); + LOG(LWARNING, ("Can't remove indexes directory:", directory, ret)); ok = false; } return ok;