App Center doesn't show anything in Log Flow

Viewed 1235

In App Center there are "Events" and "Log Flow". I have Events coming in (first picture), but nothing appears in Log Flow (second picture). What makes Log Flow show information?

Also, I am using TrackEvent such as...

Analytics.TrackEvent("Hello World");

enter image description here

enter image description here

1 Answers

'Log flow' shows the real-time events log. So it works only while your app is running. Else it will show 'Awaiting data...'

If still no logs here while app is running - events sending is not working for this app.

'Log flow' in general used for testing app event sending (Is it send or not...)

enter image description here

Related