log4net 中日志文件的公共位置不起作用?

发布于 2024-10-30 22:15:33 字数 355 浏览 1 评论 0原文

我对 log4net 中日志文件的位置有疑问。

我将此节点指定为创建日志文件的位置,

 <file type="log4net.Util.PatternString" value="%ALLUSERSPROFILE%\MyProject\error.txt/>

因为我认为它应该在用户文件夹中创建日志文件。但这个是在

bin\debug\ALLUSERSPROFILE\MyProject\error.txt

即使我也尝试过 AppData 中创建的,但其行为是相同的。 我做错了吗?

环境变量转换需要什么转换器吗?

I have an issue with the location of log file in log4net.

I gave this node for the location to create the log file

 <file type="log4net.Util.PatternString" value="%ALLUSERSPROFILE%\MyProject\error.txt/>

As I think it should create the log file in user folder. But this one is creating in the

bin\debug\ALLUSERSPROFILE\MyProject\error.txt

Even I tried AppData also but its behaving the same.
Am I doing any mistake??

Is it required any converter to convert environment variables?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

八巷 2024-11-06 22:15:33

来自文档 Apache log4net 文件附加程序

此示例演示如何使用环境变量 TMP 配置要写入的文件名

From the documentation Apache log4net file appender

This example shows how to configure the file name to write to using an environment variable TMP <file value="${TMP}\log-file.txt" />

猫弦 2024-11-06 22:15:33

我认为你应该按如下方式使用它:

<file type="log4net.Util.PatternString" value="${ALLUSERSPROFILE}\MyProject\error.txt/>

I think you should use it as follows:

<file type="log4net.Util.PatternString" value="${ALLUSERSPROFILE}\MyProject\error.txt/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文