Reputation: 1
I want to log event level_up
with two parameters: level
and character
from Unity.
To check events I use DebugView in Firebase. And when I log event with parameters I can see it in DebugView without parameter level
.
To log I call method LogEvent
from FirebaseAnalytics
class:
Parameter[] Parameters = {
new Parameter("level", 12),
new Parameter("character", "Superman"),
};
FirebaseAnalytics.LogEvent("level_up", Parameters);
To check logging events I call it in a console:
adb logcat -s "FA", "FA-SVC"
And see:
logcat console, but there isn't the level
parameter in DebugView, but is the character
:
DebugView
I expecting that there will be the level
in DebugView when I log event with level
parameter.
Upvotes: 0
Views: 221
Reputation: 347
It appears as though level is included in the output.
Note that there are some other parameters included in the mix but your "level" and "character" parameters are there.
Upvotes: 0