http_client_logger 1.1.1
http_client_logger: ^1.1.1 copied to clipboard
Dart package that seamlessly adds HTTP traffic logging to your Dart or Flutter project.
1.1.1 #
Features #
- 🆔 Improved Request ID System: Replaced UUID with custom short ID generation
- 🎯 Consistent IDs: Request IDs are now identical in HTTP headers and log output
- 📝 Enhanced Log Format: Added request ID prefixes to all log lines for better tracking
- 🔍 Concurrent Request Support: Easy to follow multiple simultaneous requests
Technical Improvements #
- ⚡ Removed UUID dependency: Custom 8-character ID generation using timestamp + random bits
- 🚀 Better Performance: Faster ID generation with guaranteed uniqueness
- 🎨 Improved Log Formatting: Consistent indentation and clear request/response boundaries
- 🛠️ Better Error Context: Error messages now include request IDs for easier debugging
Breaking Changes #
- None - fully backward compatible
1.1.0 #
Features #
- ✨ Added
Level.bodysupport for logging HTTP request and response bodies - 🚀 Enhanced request body logging for different request types (
Request,MultipartRequest) - 📝 Improved response body logging with proper stream handling using
StreamSplitter - 🔍 Added support for logging multipart form fields and file information
- ⚡ Implemented proper async handling to ensure correct log ordering
Technical Improvements #
- Added
asyncpackage dependency forStreamSplitterfunctionality - Enhanced error handling for body reading operations
- Improved UTF-8 decoding with malformed character support
- Added comprehensive documentation and performance warnings
Documentation #
- 📚 Updated README with logging level explanations and performance considerations
- ⚠️ Added performance warnings for body-level logging
- 🛠️ Enhanced code examples with different logging levels
1.0.0 #
- Initial version.