Constantine Mukhin
Constantine Mukhin

Reputation: 1

Firebase DebugView doesn't get parameter

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

Answers (1)

Joe Spiro
Joe Spiro

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.

enter image description here

Upvotes: 0

Related Questions