-
Notifications
You must be signed in to change notification settings - Fork 1
cleanup logger.info & READMEs for public prev #130
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
base: main
Are you sure you want to change the base?
Conversation
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.
Pull Request Overview
This PR cleans up logging levels and standardizes README files for public preview release. The changes reduce noise in production logs by changing several logger.info() calls to logger.debug(), and add consistent documentation with badges and links across all package READMEs.
Key changes:
- Standardized README format with badges and getting started links across 8 packages
- Changed verbose logging from info to debug level in devtools and apps packages
- Enhanced main README with better structure and package organization
Reviewed Changes
Copilot reviewed 12 out of 13 changed files in this pull request and generated 8 comments.
Show a summary per file
File | Description |
---|---|
packages/openai/README.md | Added new README with badges and getting started link |
packages/graph/README.md | Added badges and getting started link to existing README |
packages/devtools/src/microsoft/teams/devtools/devtools_plugin.py | Changed WebSocket logging from info to debug level |
packages/devtools/README.md | Added badges and getting started link |
packages/common/README.md | Added badges and getting started link |
packages/cards/README.md | Added badges and getting started link |
packages/apps/src/microsoft/teams/apps/http_plugin.py | Changed activity logging from info to debug level |
packages/apps/src/microsoft/teams/apps/app_plugins.py | Changed plugin initialization logging from info to debug level |
packages/apps/README.md | Added badges, getting started link, and fixed title |
packages/api/README.md | Added badges and getting started link |
packages/ai/README.md | Added new README with badges and getting started link |
README.md | Enhanced structure with table of contents, package links, and test apps section |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
@@ -3,9 +3,22 @@ | |||
# Microsoft Teams Common Utilities | |||
|
|||
<p> |
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.
could you add these to the cookie cutter template too?
> ℹ️ core packages used to build client/server apps for Teams. | ||
|
||
- [`microsoft-teams-apps`](./packages/apps/README.md) | ||
- [`microsoft-teams-ai`](./packages/ai/README.md) | ||
- [`microsoft-teams-api`](./packages/api/README.md) | ||
- [`microsoft-teams-cards`](./packages/cards/README.md) | ||
- [`microsoft-teams-common`](./packages/common/README.md) | ||
- [`microsoft-teams-devtools`](./packages/devtools/README.md) | ||
- [`microsoft-teams-graph`](./packages/graph/README.md) | ||
- [`microsoft-teams-openai`](./packages/openai/README.md) |
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.
not a huge fan of keeping lists like this, because they inevitably go out of sync. We can just point to the packages folder?
No description provided.