diff --git a/platform/local_country_file_utils.cpp b/platform/local_country_file_utils.cpp index 19bcc28718..86286867e0 100644 --- a/platform/local_country_file_utils.cpp +++ b/platform/local_country_file_utils.cpp @@ -195,7 +195,10 @@ void FindAllLocalMaps(vector & localFiles) catch (RootException const & ex) { if (i == localFiles.end()) - LOG(LERROR, ("Can't find any:", file, "Reason:", ex.Msg())); + { + // This warning is possible on android devices without pre-downloaded Worlds/fonts files. + LOG(LWARNING, ("Can't find any:", file, "Reason:", ex.Msg())); + } } } }