How to enter Fabrics long message

I am trying to write a long text message on a Fabrics (Android) system, for example:

Answers.getInstance().logCustom(new CustomEvent("Request:" + requestUrl + "\nResponse:" + json)); 

The message is truncated and cannot find a way to expand it:

enter image description here

Even when a message is added as a custom attribute, such as suggested by @Alexizamerican,

 Answers.getInstance().logCustom(new CustomEvent("Requests")) .putCustomAttribute("Request", requestUrl + "\nResponse:" + json) 

it remains on the Events toolbar, see the figure below: enter image description here

How to see the whole message?

0
android google-fabric
source share
1 answer

It is best to include longer messages as custom event attributes rather than in the event name. For example:

 Answers.getInstance().logCustom(new CustomEvent("Requests")) .putCustomAttribute("Request", requestUrl + "\nResponse:" + json) 

Check out https://docs.fabric.io/android/answers/answers-events.html#custom-attributes for more details.

+2
source share

All Articles