Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
dd888d0
FEAT: Logging Framework
bewithgaurav Oct 31, 2025
d6698d2
Fix Windows compilation: change constexpr to const and fix LOG() macr…
bewithgaurav Oct 31, 2025
9c9bf60
Fix DevSkim security warnings: use std::vsnprintf/snprintf/strrchr wi…
bewithgaurav Oct 31, 2025
8b83ec2
Fix Windows build: rename log level constants to avoid ERROR macro co…
bewithgaurav Oct 31, 2025
15d7d93
Fix DevSkim warnings: replace fprintf with std::cerr for safer error …
bewithgaurav Oct 31, 2025
bcf08b0
Add documentation clarifying std::vsnprintf and std::snprintf are saf…
bewithgaurav Oct 31, 2025
77f3151
Added design Doc and restore driver lib changes
bewithgaurav Nov 3, 2025
2703ccb
Logging enhancements
bewithgaurav Nov 3, 2025
dbda7aa
Trace ID and more enhancements and fixes
bewithgaurav Nov 3, 2025
832dccc
logs inside a folder
bewithgaurav Nov 4, 2025
6bd332a
fix trace ID
bewithgaurav Nov 5, 2025
f3475b6
Removed log levels
bewithgaurav Nov 6, 2025
3badf2c
Convert logging to CSV format with OS thread ID
bewithgaurav Nov 6, 2025
c5eb0e9
Update documentation to reflect CSV logging format
bewithgaurav Nov 6, 2025
3dabb99
Simplify documentation - remove CSV emphasis
bewithgaurav Nov 6, 2025
9f48266
Add log file extension validation and driver_logger export
bewithgaurav Nov 6, 2025
33f3f07
Add query logging and remove duplicate log statements
bewithgaurav Nov 6, 2025
d1be038
main.py fix
bewithgaurav Nov 6, 2025
7e86ca7
Fix troubleshooting guide
bewithgaurav Nov 7, 2025
37dc1e9
Fix troubleshooting guide
bewithgaurav Nov 7, 2025
1cce2e3
Fix troubleshooting guide
bewithgaurav Nov 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,8 @@ build/
# Virtual environments
*venv*/
**/*venv*/

# learning files
learnings/
logging_docs/
logging_demo/
Loading