mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 23:10:05 +00:00
Add debug log statements to archive warning loading
This commit is contained in:
parent
65e3a66750
commit
8dde98d2a9
4 changed files with 29 additions and 6 deletions
|
|
@ -462,11 +462,16 @@ void TextEventManager::Impl::LoadArchives(
|
|||
}
|
||||
}
|
||||
|
||||
std::vector<std::shared_ptr<awips::TextProductFile>> products {};
|
||||
|
||||
// Load the load list
|
||||
auto loadView =
|
||||
loadListEntries | ranges::views::transform([](const auto& entry)
|
||||
{ return entry.productId_; });
|
||||
auto products = provider::IemApiProvider::LoadTextProducts(loadView);
|
||||
if (!loadListEntries.empty())
|
||||
{
|
||||
auto loadView = loadListEntries |
|
||||
ranges::views::transform([](const auto& entry)
|
||||
{ return entry.productId_; });
|
||||
products = provider::IemApiProvider::LoadTextProducts(loadView);
|
||||
}
|
||||
|
||||
// Process loaded products
|
||||
for (auto& product : products)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue