I've log event, I can see other events but not the one I have just added. I've already enabled debug:
adb shell setprop debug.firebase.analytics.app [your_app_package_name]
One thing you can do is to show logs
adb shell setprop log.tag.FA VERBOSE
adb shell setprop log.tag.FA-SVC VERBOSE
adb logcat -v time -s FA FA-SVC
in my case it was:
E/FA ( 4216): Name is too long. Type, maximum supported length, name: event, 40, very_long_name_introduction_screen_use_button_clicked
E/FA ( 4216): Invalid public event name. Event will not be logged (FE): very_long_name_introduction_screen_use_button_clicked
Check if you event name is not longer than 40 characters.