Skip to content

Commit

Permalink
feat(api): change log level from error to warn for url parsing (tronp…
Browse files Browse the repository at this point in the history
  • Loading branch information
halibobo1205 authored Sep 14, 2023
1 parent 326b782 commit 99bef82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private boolean isDisabled(String endpoint) {
disabled = disabledApiList.contains(endpoint.split("/")[2].toLowerCase());
}
} catch (Exception e) {
logger.error("check isDisabled except, endpoint={}, error is {}", endpoint, e.getMessage());
logger.warn("check isDisabled except, endpoint={}, {}", endpoint, e.getMessage());
}

return disabled;
Expand Down

0 comments on commit 99bef82

Please sign in to comment.