Skip to content

Commit

Permalink
添加空格
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Aug 21, 2012
1 parent 90aebf0 commit 14ec569
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ protected static void appendProperties(AbstractConfig config) {
if (config.getId() != null && config.getId().length() > 0) {
String pn = prefix + config.getId() + "." + property;
value = System.getProperty(pn);
logger.info("Use System Property " + pn + "to config dubbo");
logger.info("Use System Property " + pn + " to config dubbo");
}
if (value == null || value.length() == 0) {
String pn = prefix + property;
value = System.getProperty(pn);
logger.info("Use System Property " + pn + "to config dubbo");
logger.info("Use System Property " + pn + " to config dubbo");
}
if (value == null || value.length() == 0) {
Method getter;
Expand Down

0 comments on commit 14ec569

Please sign in to comment.