feat(api-detector-core): quiet default detector console output to stage headers - #77
Merged
Merged
Conversation
…ge headers Throttled per-batch scan progress now logs at INFO (visible only with --info) instead of LIFECYCLE, and a new DetectorStageReporter emits the always-visible "[N/M] stage" headers, so default output shows one line per major phase instead of a stream of batch counters.
Arc-E-Tect
added a commit
that referenced
this pull request
Aug 25, 2026
# [1.5.0](api-detector-core-v1.4.0...api-detector-core-v1.5.0) (2026-08-25) ### ✨ New and updated features * **api-detector-core:** quiet default detector console output to stage headers ([#77](#77)) ([d270839](d270839)), closes [#77](#77) ### 🐛 Bug Fixes * **ci:** correct the Latest-version sed pattern in two release workflows ([#76](#76)) ([a02c3ce](a02c3ce)), closes [#76](#76) ### 📝 Documentation * **api-detector-core:** update README version to 1.4.0 [skip ci] ([4491ed5](4491ed5))
Owner
Author
|
🎉 This PR is included in version 1.5.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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.
Summary
ScanProgressReporter.step()now log atINFO(visible only with--info) instead ofLIFECYCLE, so the default console output no longer streams batch counters.ScanProgressReporter.complete()still logs atLIFECYCLE, so the final per-phase "done, N item(s)" line stays visible by default.DetectorStageReporteremits the always-visible top-level"<Plugin Name>: [N/M] <stage>..."headers marking each major phase of a plugin run.Together these let a detector plugin's default console output look like:
with per-batch detail only surfacing under
--info.Note: this only touches the shared
api-detector-corelibrary. WiringDetectorStageReporterinto the actual Shadow/Mirage/Doppelganger plugin task classes (inSoftwareEngineeringDoneRight-Gradle) is a separate follow-up.