【发布时间】:2011-02-27 07:03:17
【问题描述】:
我花了一天时间尝试使 Ent Lib Logging 工作并将任何内容记录到数据库或事件日志中。我有一个具有相同 Ent Lib 配置的 Web 应用程序和控制台应用程序,但只有控制台应用程序能够登录到事件日志。我尝试了所有有权限的事情,但我不知道我到底在做什么——哪些服务应该有什么。它不起作用!
我读过这样的文章 http://imar.spaanjaars.com/275/logging-errors-to-the-event-log-in-aspnet-applications 我想尝试为 ASPNET 帐户授予这些权限。我使用的是 Windows 7,但找不到 ASPNET 用户帐户。那么它在哪里呢?
这是从 Ent Lib 实用程序自动生成的配置文件,它仅适用于 App.config,不适用于 web.config
<loggingConfiguration name="Logging Application Block" tracingEnabled="true"
defaultCategory="General" logWarningsWhenNoCategoriesMatch="true"
revertImpersonation="false">
<listeners>
<add source="Logger" formatter="Text Formatter" log="Application"
machineName="" listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FormattedEventLogTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
traceOutputOptions="None" filter="All" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FormattedEventLogTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
name="Formatted EventLog TraceListener" />
</listeners>
<formatters>
<add template="Timestamp: {timestamp}
Message: {message}
Category: {category}
Priority: {priority}
EventId: {eventid}
Severity: {severity}
Title:{title}
Machine: {machine}
Application Domain: {appDomain}
Process Id: {processId}
Process Name: {processName}
Win32 Thread Id: {win32ThreadId}
Thread Name: {threadName}
Extended Properties: {dictionary({key} - {value}
)}"
type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
name="Text Formatter" />
</formatters>
<categorySources>
<add switchValue="All" name="General">
<listeners>
<add name="Formatted EventLog TraceListener" />
</listeners>
</add>
</categorySources>
<specialSources>
<allEvents switchValue="All" name="All Events" />
<notProcessed switchValue="All" name="Unprocessed Category" />
<errors switchValue="All" name="Logging Errors & Warnings">
<listeners>
<add name="Formatted EventLog TraceListener" />
</listeners>
</errors>
</specialSources>
</loggingConfiguration>
【问题讨论】:
-
你能发布你配置的相关部分吗? WebApp 和 ConsoleApp 是否在同一台机器上运行?
-
是的,WebApp 和 ConsolApp 在同一台机器上运行
-
“我尝试了所有有权限的方法”——你尝试了什么?
-
这就是为什么我从 EntLib 日志记录中惊恐地逃跑的原因。我使用 Elmah 进行未处理的异常捕获和一个非常简单的使用 Linq-2-Sql 的 sql server 审计小部件,它只允许您编写带有一些元数据的字符串来记录业务事件。
标签: .net asp.net logging enterprise-library