For the complete documentation index, see llms.txt. This page is also available as Markdown.

User Events

API reference for logging user events with Luciq. Capture and report custom user events to add rich behavioral context to bug reports and crashes.

You can manually log user events and send them with each report using this method. This method takes a single string.

Luciq.logUserEvent(withName: "Skipped Walkthrough")
[Luciq logUserEventWithName:@"Skipped Walkthrough"];
Luciq.logUserEvent("Logged in");
Luciq.logUserEvent("Logged in")
Luciq.logUserEventWithName("OnFeedbackButtonClicked");
Luciq.logUserEventWithName("OnFeedbackButtonClicked");

Last updated