PQLogInterceptor constructor

PQLogInterceptor({
  1. bool request = true,
  2. bool requestHeader = true,
  3. bool requestBody = true,
  4. bool responseHeader = false,
  5. bool responseBody = true,
  6. bool error = true,
  7. List<String>? ignoreUrls,
  8. String? ignoreHost,
  9. List<String>? ignorePaths,
  10. int maxLines = 500,
})

Implementation

PQLogInterceptor({
  this.request = true,
  this.requestHeader = true,
  this.requestBody = true,
  this.responseHeader = false,
  this.responseBody = true,
  this.error = true,
  this.ignoreUrls,
  this.ignoreHost,
  this.ignorePaths,
  this.maxLines = 500,
});