You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wanted to figure out if there's a way we can configure character limit for void track(String eventName, {Map<String, dynamic>? properties}) 's properties. Currently we are logging stack app's stack trace in case of error like
mixpanel?.track(errorType ?? "Error", properties: {
"stack": stack?.toString() ?? "No StackTrace found",
"details": error is Map ? error : error.toString()
});,
but it's getting trailed off and we are not able to get useful insights for some of the issues.
Tried going through the issues page but couldn't find anything relevant.
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Wanted to figure out if there's a way we can configure character limit for
void track(String eventName, {Map<String, dynamic>? properties})
's properties. Currently we are logging stack app's stack trace in case of error likebut it's getting trailed off and we are not able to get useful insights for some of the issues.
Tried going through the issues page but couldn't find anything relevant.
Thanks in advance.
The text was updated successfully, but these errors were encountered: