Skip to content

Commit

Permalink
when the url is generic, the log level should be info (apache#6363)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvictory authored Jun 24, 2020
1 parent b8b42b1 commit 6478ac9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public void publishServiceDefinition(URL providerUrl) {
serviceDefinitions.put(providerUrl.getServiceKey(), data);
return;
}
logger.error("publishProvider interfaceName is empty . providerUrl: " + providerUrl.toFullString());
logger.info("publishProvider interfaceName is empty . providerUrl: " + providerUrl.toFullString());
} catch (ClassNotFoundException e) {
//ignore error
logger.error("publishProvider getServiceDescriptor error. providerUrl: " + providerUrl.toFullString(), e);
Expand Down

0 comments on commit 6478ac9

Please sign in to comment.