-
Notifications
You must be signed in to change notification settings - Fork 193
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
Filter duplicate resolver messages #3225
Filter duplicate resolver messages #3225
Conversation
tycho-core/src/main/java/org/eclipse/tycho/osgi/configuration/FilteringMavenLogger.java
Show resolved
Hide resolved
FYI @akurtakov @jukzi this should reduce some of the maven warnings we currently see multiple times in the log (and improve formatting them as well). |
Currently a warning of the resolver might be printed multiple times to the log because we call the resolver for each registered environment. This adds a duplication filtering on the log message that each message is only printed once per project.
8b60985
to
7780923
Compare
Old format (printed multiple times):
new format (only printed once)
|
That would be so much nicer! |
yes, please! |
@merks after all P2 updates I now see regular fail of
any clue what could have changed here it is only failing on windows? |
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation and see the Github Action logs for details |
One theory would be that the cacerts being used on Windows is not recognizing |
We usually setup JVMs here: tycho/.github/workflows/maven.yml Lines 26 to 35 in 697dc92
but of course it can't be the same JVM as on linux. DO you think it might be worth to make the test less "strict" or have an |
Currently a warning of the resolver might be printed multiple times to the log because we call the resolver for each registered environment.
This adds a duplication filtering on the log message that each message is only printed once per project.