@ - where can I find the log written to in the below code:
Microsoft::Xbox::Services::Statistics::Manager::StatisticManager^ mgr = Microsoft::Xbox::Services::Statistics::Manager::StatisticManager::SingletonInstance;
if (mgr != nullptr)
{
auto EventList = mgr->DoWork();
for (auto Event : EventList)
{
if (Event->ErrorCode != 0)
{
UE_LOG_ONLINE(Warning, TEXT("DoWork error: %s"), Event->ErrorMessage->Data());
:
}
}
}
I placed a breakpoint in the ErrorCode block but it was never hit. Most likely an error never occurred.