Network Masking
Luciq automatically logs all network requests performed by your app from the start of the session. Requests details, along with their responses, are sent with each report. Luciq will also show you an alert at the top of the bug report in your dashboard when network requests have timed-out or taken too long to complete. Note that the maximum number of network logs sent with each report is 1,000.

Logging HttpUrlConnection requests for Android
HttpUrlConnection requests for AndroidTo log network requests, use LuciqNetworkLog then use the following method at the HttpUrlConnection, requestBody and responseBody referenced here.
Auto-Masking Network Headers
Starting from SDK Version 14.2.0, our SDK will automatically mask the below keys from Network Headers and Query Parameters to ensure that no sensitive data reaches our servers.
The below keys will be displayed normally on the dashboard, but their corresponding values will be replaced with an asterisk (*) to protect sensitive data.
Adding New Keys
The list of masked keys is configurable on our side. This means you don't need to make any code changes to add new keys; they will be automatically reflected in the next session. If you need additional keys added, please reach out to support.
Disabling Network Header Auto-Masking
This feature is enabled by default and we strongly recommend to keep it enabled to make sure PII data is not collected by our SDK. However, if you need to disable it for any reason, please use the below API.
Omitting Requests
You can omit requests from being logged based on their request or response details. You can also specify an expression to be evaluated against every request and response to determine if the request should be included in logs or not.
Obsucating Data
Requests
You can obfuscate sensitive user data, such as authentication tokens, in requests without filtering out the whole request.
Responses
Last updated