Skip to content

Commit

Permalink
warn --> debug, since it's misleading
Browse files Browse the repository at this point in the history
  • Loading branch information
sumiya11 committed Jan 25, 2024
1 parent 1a7ebff commit 5edc123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parametrizations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function check_constructive_field_membership(
# If norm_form(Num) // norm_form(Den) does not belongs to K(T), then
# the fraction does not belong to the field
if iszero(den_rem)
@warn """
@debug """

Check warning on line 70 in src/parametrizations.jl

View check run for this annotation

Codecov / codecov/patch

src/parametrizations.jl#L70

Added line #L70 was not covered by tests
The element $tagged_num // $tagged_den is not in the sub-field
Normal form, numerator: $num_rem
Normal form, denominator: $den_rem
Expand All @@ -76,7 +76,7 @@ function check_constructive_field_membership(
return false, zero(ring_of_tags) // one(ring_of_tags)
end
if total_degree(num_rem) > 0 || total_degree(den_rem) > 0
@warn """
@debug """
The element $tagged_num // $tagged_den is not in the sub-field
Normal form, numerator: $num_rem
Normal form, denominator: $den_rem
Expand Down

0 comments on commit 5edc123

Please sign in to comment.