pretty_chopper_logger 1.2.0 copy "pretty_chopper_logger: ^1.2.0" to clipboard
pretty_chopper_logger: ^1.2.0 copied to clipboard

Pretty Chopper logger is a Chopper interceptor that logs network calls in a pretty, easy to read format.

pretty_chopper_logger #

Pub

Pretty Chopper logger is a Chopper interceptor designed to enhance the logging of network calls in Dart applications. Inspired by the popular pretty_dio_logger package, it aims to provide developers with a clear and readable format for debugging network requests and responses.

Features #

  • Readable Logging: Log network calls in a visually appealing format, making it easier to understand request and response details.
  • Customizable: Tailor the logging output to suit your preferences and requirements.
  • Integration: Seamlessly integrate Pretty Chopper Logger into your Chopper client with just a few lines of code.
  • Compatibility: Compatible with the latest versions of Chopper and Dart, ensuring smooth integration with your existing projects.

Usage #

To start using Pretty Chopper Logger in your project, simply follow these steps:

  1. Install the Package: Add pretty_chopper_logger to your pubspec.yaml file:
dependencies:
  pretty_chopper_logger: ^latest_version
  1. Import the Package: Import the package into your Dart file:
import 'package:pretty_chopper_logger/pretty_chopper_logger.dart';
  1. Add Interceptor: Create a Chopper client and add PrettyChopperLogger to its interceptors:
final ChopperClient chopper = ChopperClient(
  baseUrl: Uri.parse("http://www.mocky.io/"),
  interceptors: [PrettyChopperLogger()],
  services: [
    // Add your Chopper services here
  ],
);
  1. Start Logging: With the interceptor added, network calls made through Chopper will now be logged in a visually appealing format.

Customization #

You can customize the logging behavior of Pretty Chopper Logger to better fit your needs. Here are some common customization options:

  • Log Levels: Specify which log levels to include or exclude in the output.
  • Request and Response Formatting: Define how request and response details are formatted in the logs.
  • Colors and Styles: Adjust the colors and styles used for different parts of the log output.

Refer to the package documentation or source code for more information on customization options.

Example #

Here's an example of how the logged output looks:

Response Example

Feedback and Contributions #

If you encounter any issues, have suggestions for improvements, or would like to contribute to the project, please feel free to open an issue or pull request on the GitHub repository. Your feedback and contributions are highly appreciated!

4
likes
160
pub points
88%
popularity

Publisher

unverified uploader

Pretty Chopper logger is a Chopper interceptor that logs network calls in a pretty, easy to read format.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

chopper, flutter, http

More

Packages that depend on pretty_chopper_logger