I used logService in client code.
After I check the tutorials: http://api.shephertz.com/tutorial/Funnel-Management/?index=analytics-funnel
I setEvent as follow:
mLogService.SetEvent("TestModule", "Test_" + eventName,new UnityCallBackTest());
But in AppHQ console, I can see nothing displayed in "Events" and "Funnel Management" view.
Then I try another way, setEvent as follow:
mLogService.SetEvent("Test_" + eventName,new UnityCallBackTest());
I can see events displayed in "Events" view but nothing in "Funnel Management" view.
What's the matter?