提交 23322b29 编写于 作者: S Serge Rider

Connection info logging fix

上级 7307af8a
......@@ -742,7 +742,11 @@ public class DataSourceDescriptor
DataSourceDescriptor.this,
true));
}
log.debug("Connected (" + getId() + ")");
try {
log.debug("Connected (" + getId() + ", " + getPropertyDriver() + ")");
} catch (Throwable e) {
log.debug("Connected (" + getId() + ", driver unknown)");
}
return true;
} catch (Exception e) {
log.debug("Connection failed (" + getId() + ")");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册