Feature/logging improvements#10
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR improves runtime observability across the chat export pipeline by adding structured logs (INFO/DEBUG/WARNING) during CLI startup, config validation, importer execution (Threema/WhatsApp), orchestration, and PDF rendering.
Changes:
- Added structured progress/summary logging in CLI, config validation, orchestration, and PDF rendering.
- Added detailed logging in WhatsApp ZIP selection/parsing/normalization and media extraction.
- Added detailed logging in Threema import flow, external index build, media blob fetching, normalization, and TECH PDF rendering.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/chat_export/whatsapp/zip_reader.py | Adds debug/info logs around ZIP opening, candidate scoring, and selection decisions. |
| src/chat_export/whatsapp/normalize.py | Adds debug logs and parsing/normalization summary counters. |
| src/chat_export/whatsapp/importer.py | Adds import-phase logs and media export summary details. |
| src/chat_export/threema/tech_pdf.py | Adds render start/end logs for TECH PDF generation. |
| src/chat_export/threema/normalize.py | Adds debug logs and normalization summary counters. |
| src/chat_export/threema/media/export.py | Adds debug logging for media blob fetch/dedup outcomes. |
| src/chat_export/threema/importer.py | Adds progress logs for base loads, per-conversation processing, and run completion. |
| src/chat_export/threema/external_index.py | Adjusts external index logging and adds scanned file count. |
| src/chat_export/render/pdf_builder.py | Adds render start/end logs and clarifies “story build” debug message. |
| src/chat_export/orchestrator.py | Adds orchestration start/end logs and per-conversation progress logging. |
| src/chat_export/config.py | Adds debug logs to input path resolution and config validation. |
| src/chat_export/cli.py | Adds CLI argument/options logging and end-of-run summary logs. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 12 out of 12 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds structured runtime logging to the export pipeline.
Changed
Notes