Skip to content
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

Fix for #3501: Decrease log level of duplicate sort warnings #3505

Merged
merged 4 commits into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public Object visitOne_sort_decl(KeYParser.One_sort_declContext ctx) {
// weigl: agreement on KaKeY meeting: this should be ignored until we finally have
// local namespaces for generic sorts
// addWarning(ctx, "Sort declaration is ignored, due to collision.");
LOGGER.info("Sort declaration of {} in {} is ignored due to collision (already "
LOGGER.debug("Sort declaration of {} in {} is ignored due to collision (already "
+ "present in {}).", sortName, BuilderHelpers.getPosition(ctx),
existingSort.getOrigin());
}
Expand Down
Loading