You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(pkg/cache): use context logger instead of struct logger (#141)
# Remove global logger in favor of context-based logging
The cache package now uses context-based logging instead of maintaining a global logger instance. This change:
- Removes the global logger field from the Cache struct
- Passes logger through context in all methods
- Updates method signatures to use context-based logging
- Ensures consistent logging patterns across the codebase
- Maintains proper logging context and correlation
The change improves logging consistency and makes it easier to trace operations through the system by using context-based logging throughout the cache package.
0 commit comments