forked from organicmaps/organicmaps
[platform] Fixed logging severity for LocalCountryFileUtils.
This commit is contained in:
parent
5c725170ee
commit
7485bb000a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue