interceptors property
The interceptors that will be used by the logger
Interceptors are used in order of their placement in the List and th request is passed through each interceptor sequentially.
For example:
[A, B, C]
A -> B -> C
If 'A' modified the request then 'B' will get the modified request.
[A, C, B]
A -> C -> B
If an interceptor fails the next interceptor in the chain will be used.
Implementation
final List<SLogInterceptor> interceptors;