Simple example of how to trigger an event with do-not-store tag.
This commit is contained in:
Max Golovanov 2019-12-26 11:53:29 -08:00 коммит произвёл GitHub
Родитель 37052e68f6
Коммит aeffcba591
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -221,15 +221,10 @@ void logPiiMark()
void logDoNotStore()
{
#if 1 /* Quick test for DoNotStore tag */
auto logger = LogManager::GetLogger();
LogManager::PauseTransmission();
EventProperties eventInRam("MyEvent.NeverStore");
eventInRam.SetPersistence(EventPersistence::EventPersistence_DoNotStore);
logger->LogEvent(eventInRam); // this event should not go to disk
LogManager::FlushAndTeardown();
if (1) abort();
#endif
}
int main()