imp: add log-level TOML config key#229
Merged
mergify[bot] merged 3 commits intoflux-framework:masterfrom Apr 26, 2026
Merged
Conversation
Problem: There is no way to enable IMP debug log output from the installed IMP executable. Add a top-level log-level config key that accepts "warning", "info", or "debug". When set, it overrides the default (info) level. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Problem: The new log-level key has no documentation. Add log-level to the top-level keys section of the IMP config man page. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Problem: The new log-level config key has no test coverage. Add tests to t1000-imp-basic.t for accepted log levels (info, debug, warning) and for an unknown level that should produce a warning. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #229 +/- ##
==========================================
- Coverage 84.90% 84.78% -0.13%
==========================================
Files 38 38
Lines 5195 5154 -41
==========================================
- Hits 4411 4370 -41
Misses 784 784
🚀 New features to boost your workflow:
|
Member
Author
|
Thanks, I"ll set MWP. |
Contributor
Merge Queue Status
This pull request spent 10 seconds in the queue, including 1 second running CI. Required conditions to merge
|
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.
Problem: There is no way to enable IMP debug log output from the installed IMP executable.
Add a top-level
log-levelconfig key that accepts "warning", "info", or "debug". When set, it overrides the default (info) level.