Enterprise Library Logging not logging to Event Log from ASP.NET

前端 未结 4 2038
清歌不尽
清歌不尽 2021-02-19 23:16

I spent a day trying to make Ent Lib Logging work and log anything into database or event log. I have a web application and console application with the same Ent Lib config but

4条回答
  •  名媛妹妹
    2021-02-19 23:55

    I use a PowerShell script to create the appropriate source ...

    $source = "FoToIaW"
    if ([System.Diagnostics.EventLog]::SourceExists($source) -eq $false) 
    {
      [System.Diagnostics.EventLog]::CreateEventSource($source, "Application")
    }
    

提交回复
热议问题