Skip to content

Commit

Permalink
日志修改 DUBBO-573
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Aug 30, 2012
1 parent 925bc13 commit 0acac3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static String getVersion(Class<?> cls, String defaultVersion) {
return version == null || version.length() == 0 ? defaultVersion : version;
} catch (Throwable e) { // 防御性容错
// 忽略异常,返回缺省版本号
logger.error(e.getMessage(), e);
logger.error("return default version, ignore exception " + e.getMessage(), e);
return defaultVersion;
}
}
Expand Down

0 comments on commit 0acac3f

Please sign in to comment.