Asp.net Mvc 2 中的 Enterprise Library 5 能否为每个用户提供一个日志文件?

发布于 2024-09-02 03:54:54 字数 362 浏览 5 评论 0原文

到目前为止,建议了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别在捏我脸啦 2024-09-09 03:54:54

您可以通过编程方式创建日志文件。查看此链接以获取一般参考:

http ://www.davidhayden.com/blog/dave/archive/2006/02/14/2801.aspx

//Create filename
String fileName = <method_to_determine_logged_on_user> +".Recordings.log";

// Create a log file
Stream logFile = File.Create(fileName);

// Create the TextWriterTraceListener
TextWriterTraceListener listener = new TextWriterTraceListener(logFile);

// Add the listener to the list of TraceListeners
Trace.Listeners.Add(listener);

// Output the message
Trace.Write("My log message");

// Flush the output.
Trace.Flush(); 

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

//Create filename
String fileName = <method_to_determine_logged_on_user> +".Recordings.log";

// Create a log file
Stream logFile = File.Create(fileName);

// Create the TextWriterTraceListener
TextWriterTraceListener listener = new TextWriterTraceListener(logFile);

// Add the listener to the list of TraceListeners
Trace.Listeners.Add(listener);

// Output the message
Trace.Write("My log message");

// Flush the output.
Trace.Flush(); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文