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
Copy file name to clipboardExpand all lines: README.md
+62Lines changed: 62 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -203,6 +203,68 @@ class TestNewFeature(unittest.TestCase):
203
203
pass
204
204
```
205
205
206
+
## Logging
207
+
208
+
The application includes comprehensive logging to improve debugging capabilities and operational visibility. Logs are written to both console and rotating log files.
209
+
210
+
### Log Files Location
211
+
- **Directory:**`logs/`
212
+
- **Main log file:**`logs/app.log`
213
+
- **Rotation:** Files rotate at 10MB with up to 5 backup files
214
+
215
+
### Log Levels
216
+
- **DEBUG:** Detailed diagnostic information (file operations, API calls, data flow)
217
+
- **INFO:** General informational messages (successful operations, state changes)
218
+
- **WARNING:** Warning messages for recoverable issues (fallbacks, empty files)
219
+
- **ERROR:** Error messages for failures that don't stop execution
0 commit comments