Skip to content

kouweizhong/reflectinsight-extensions-log4net

 
 

Repository files navigation

ReflectInsight-Extensions-Log4Net

Build status License Release NuGet Version Stars

Package - ReflectSoftware.Insight.Extensions.Log4Net | Platforms - .NET 4.5.1 and above

Overview

We've added support for the Log4net appender. This allows you to leverage your current investment in log4net, but leverage the power and flexibility that comes with the ReflectInsight viewer. You can view your log4net messages in realtime, in a rich viewer that allows you to filter out and search for what really matters to you.

The log4net extension supports Log4net v2.0.8. However if you need to support an older version, then you will need to download the ReflectInsight Logging Extensions Library from GitHub. You can then reference and rebuild the extension against a specific release of the log4net dll.

Benefits of ReflectInsight Extensions

The benefits to using the Insight Extensions is that you can easily and quickly add them to your applicable with little effort and then use the ReflectInsight Viewer to view your logging in real-time, allowing you to filter, search, navigate and see the details of your logged messages.

Getting Started

Install-Package ReflectSoftware.Insight.Extensions.Log4Net

Then in your app.config or web.config file, add the following configuration sections:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="insightSettings" type="ReflectSoftware.Insight.ConfigurationHandler,ReflectSoftware.Insight" />
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
  </configSections>

  <insightSettings>
    <baseSettings>
      <configChange enabled="true" />
      <propagateException enabled="false" />
      <exceptionEventTracker time="20" />
      <debugMessageProcess enabled="true" />
    </baseSettings>

    <listenerGroups active="Debug">
      <group name="Debug" enabled="true" maskIdentities="false">
        <destinations>
          <destination name="Viewer" enabled="true" filter="" details="Viewer" />
        </destinations>
      </group>
    </listenerGroups>

    <logManager>
      <instance name="log4netInstance1" category="Log4net1" />
    </logManager>
  </insightSettings>

  <log4net debug="false">
    <appender name="MyLogAppender1" type="ReflectSoftware.Insight.Extensions.Log4net.LogAppender, ReflectSoftware.Insight.Extensions.Log4net">
      <param name="InstanceName" value="log4netInstance1" />
      <param name="DisplayLevel" value="true" />
      <param name="DisplayLocation" value="true" />
    </appender>

    <root>
      <appender-ref ref="MyLogAppender1" />
    </root>
  </log4net>
    
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
  </startup>
</configuration>

Additional configuration details for the ReflectSoftware.Insight.Extensions.Log4Net logging extension can be found in our documentation.

Additional Resources

Documentation

Submit User Feedback

Contact Support

ReflectSoftware Website

About

A ReflectInsight Extension that receives logged messages from Log4Net framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 86.6%
  • PowerShell 13.4%