Skip to content

Commit

Permalink
fix: lower warning level
Browse files Browse the repository at this point in the history
  • Loading branch information
qixils committed Feb 27, 2024
1 parent 98b2b59 commit 561289a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ abstract class CrowdControlBuilderBase<B extends CrowdControlBuilderBase<B>> imp
@Contract("_ -> this")
public @NotNull B ip(@Nullable String IP) throws IllegalArgumentException {
if (IP == null || IP.isEmpty()) {
logger.warn("Received null IP; ignoring");
logger.debug("Received null IP; ignoring");
this.IP = null;
return (B) this;
}
Expand Down

0 comments on commit 561289a

Please sign in to comment.