log4net 中的连接字符串名称
log4net 的 connectionStringName
属性是否从 web.config
以及 app.config
中提取连接字符串?
我尝试使用它,但由于某种原因它不起作用。
我在 web.config
中放入了一些名为“Logs”的连接字符串,然后在 log4net.config
中添加了带有 AdoNetAppender
的 AdoNetAppender
。 code>connectiongStringName 设置为“Logs”,但它似乎不起作用。
有人可以提供一些如何使用此功能的工作示例吗?
谢谢
Is the connectionStringName
property of log4net pulling connection strings from web.config
as well as from app.config
?
I've tried to use it, but for some reason it did not work.
I've put some connection string named 'Logs' in my web.config
and then added in my log4net.config
an AdoNetAppender
with a connectiongStringName
set to 'Logs', but it did not seem to work.
Could someone provide some working example of how to use this feature?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
log4net
使用ConfigurationManager.ConnectionStrings[];
从配置文件中读取连接字符串。因此,只要您在 app/web.config 文件中指定 ConnectionStrings,如下所示,就应该没问题:
log4net
usesConfigurationManager.ConnectionStrings[];
to read the connectionstring from the configuration file.So as long as you specify ConnectionStrings in your app/web.config file like below, it should be all right: