Skip to content

Commit

Permalink
changed warning to info
Browse files Browse the repository at this point in the history
  • Loading branch information
MeAlam1 committed Dec 11, 2024
1 parent b492358 commit 6db5fc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private void appendHyperlink(String linkText, String url, MutableComponent resul
BaseLogger.log(BaseLogLevel.INFO, "Matched text: " + linkText + ", URL: " + url, true);

if (!MiscUtils.isValidURL(url)) {
BaseLogger.log(BaseLogLevel.WARNING, "Invalid URL detected: " + url, true);
BaseLogger.log(BaseLogLevel.INFO, "Invalid URL detected: " + url, true);
result.append(Component.literal(prefix + linkText + suffix + "(" + url + ")"));
return;
}
Expand Down

0 comments on commit 6db5fc2

Please sign in to comment.