1
0
Fork 0

Sentry: add some extra bread-crumbs

This commit is contained in:
Automatic Release Builder 2020-11-11 21:33:16 +00:00 committed by James Turner
parent 21e6c06a0c
commit 5b08a780f6
2 changed files with 3 additions and 0 deletions

View file

@ -399,6 +399,7 @@ Q_SIGNALS:
protected:
void run() override
{
flightgear::addSentryBreadcrumb("AircraftScan started", "info");
readCache();
// avoid filling up Sentry with many reports
@ -416,6 +417,7 @@ protected:
}
writeCache();
flightgear::addSentryBreadcrumb("AircraftScan finished", "info");
}
private:

View file

@ -174,6 +174,7 @@ void initNavCache()
updateTimer.start(); // timer won't actually run until we process events
rebuildProgress.exec();
updateTimer.stop();
flightgear::addSentryBreadcrumb("Launcher nav-cache rebuild complete", "info");
}
}