Asp.net Mvc 2 中的 Enterprise Library 5 能否为每个用户提供一个日志文件?
到目前为止,建议了 2 个解决方案 在文件名部分使用 %username% 的环境变量,以及 低级非托管代码来完成它。环境变量很容易只拉回正在运行应用程序的用户(服务器进程登录),而不是表单的登录验证用户名或 userGuid。
EntLib 5 中已修复或更改此问题吗?我可以以某种方式在一个或多个类别中配置每个用户日志吗?这样我就可以记录 App_Data/User1.Recordings.log 和 App_Data/User1.Category2.log 等?
There were 2 solutions suggested so far Environment variables using %username% in the filename section, and low level unmanaged code to accomplish it. Environment variables would be susceptible to pulling back only the user that is running the app (the server process login), not the form's login validated username or userGuid.
Has this been fixed or changed in EntLib 5? can I somehow configure a per user log within a category or categories? so that I can log App_Data/User1.Recordings.log and App_Data/User1.Category2.log, etc. ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过编程方式创建日志文件。查看此链接以获取一般参考:
http ://www.davidhayden.com/blog/dave/archive/2006/02/14/2801.aspx
You can create you log files programmatically. Take a look at this link for a general reference:
http://www.davidhayden.com/blog/dave/archive/2006/02/14/2801.aspx