Feature/custom log formatting#1689
Open
smghasempour wants to merge 2 commits into
Open
Conversation
smghasempour
force-pushed
the
feature/custom-log-formatting
branch
from
July 4, 2025 09:29
444623f to
0b30bb3
Compare
smghasempour
marked this pull request as draft
July 4, 2025 09:29
smghasempour
marked this pull request as ready for review
July 4, 2025 09:30
smghasempour
force-pushed
the
feature/custom-log-formatting
branch
3 times, most recently
from
July 14, 2025 10:23
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. |
smghasempour
force-pushed
the
feature/custom-log-formatting
branch
2 times, most recently
from
October 8, 2025 16:49
9bba646 to
0b30bb3
Compare
smghasempour
marked this pull request as draft
October 8, 2025 17:04
smghasempour
force-pushed
the
feature/custom-log-formatting
branch
3 times, most recently
from
October 8, 2025 17:31
df984c3 to
c4efea9
Compare
smghasempour
marked this pull request as ready for review
October 8, 2025 17:56
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? |
|
I would love to be able to remove the shim I wrote three years ago. Who do we need to nudge? |
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.