Open
Conversation
444623f to
0b30bb3
Compare
d69082e to
01e4121
Compare
|
This is excellent! Hope it gets merged soon. That "failing" test doesn't seem to be related to this PR, but rather an issue with the CI system itself. |
9bba646 to
0b30bb3
Compare
df984c3 to
c4efea9
Compare
Author
|
The PR is ready to merge now, but I don't have merge access. I'll appreciate it if some can review and merge it. |
|
also very interested in getting this merged. |
|
What are we missing here to merge and release this awesome feature? |
|
Are there any blockers to merge this feature? |
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.
Add Configurable Log Formatting Options for Supervisor
Fixes #553 - This PR implements highly requested log formatting configuration options for Supervisor, addressing community feedback.
What's New
Two new configuration options:
logfile_format- Customizes main supervisord log messageschildlog_format- Customizes child process log messages (stdout/stderr)Both support Python logging format strings with placeholders like
%(asctime)s,%(levelname)s,%(process)d, etc.Example Usage
Output:
Key Features
backward compatible - existing configs work unchanged
error handling - invalid formats fall back to defaults
tests - all existing tests pass + new coverage
documentation - examples, best practices, troubleshooting
Benefits
This addresses a long-standing community request for better control over Supervisor's logging output while maintaining full compatibility.