generated from PartridgeRocks/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Add simple event logging for API interactions:
// In config/github-client.php
'logging' => [
'enabled' => true,
'channel' => 'github',
'level' => 'debug',
],Events to log:
- API requests and responses
- Rate limit warnings
- Authentication issues
- Cache hits/misses
Implementation:
- Add logging config
- Create LoggingMiddleware
- Define log format
- Add to pipeline
- Document logging options
Helps with debugging and monitoring.