-
Notifications
You must be signed in to change notification settings - Fork 64
198 add structlog #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
198 add structlog #208
Changes from all commits
3f09b57
c09c338
9716a0b
7e00248
d0d2668
1098e39
8e7692b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,24 +1,65 @@ | ||||||
| import logging | ||||||
| import os | ||||||
| from logging.handlers import RotatingFileHandler | ||||||
| from pathlib import Path | ||||||
|
|
||||||
| from rich.console import Console | ||||||
| from rich.logging import RichHandler | ||||||
| import orjson | ||||||
| import structlog | ||||||
| from attrs import define, field | ||||||
| from whenever._whenever import Instant | ||||||
|
||||||
| from whenever._whenever import Instant | |
| from whenever import Instant |
Copilot
AI
Jun 29, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Logs are written to the current working directory; consider writing to a dedicated logs/ directory or ensuring the path exists to avoid clutter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] There are multiple blocks of commented-out experimental code and TODOs; consider removing or relocating them to keep the codebase clean and focused.