active questions tagged log4net - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T16:55:02Zhttp://stackoverflow.com/feeds/tag/log4nethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812880/log4net-and-logging-from-parllel-instances1Log4Net and logging from parllel instances.Akim Khalilov2009-11-28T16:05:51Z2009-11-28T16:36:18Z
<p>Hi.</p>
<p>I'm using log4net in my project and there're one problem.
The major function of the program takes a long time and I use logging to save information about it. I use <strong>FileAppender</strong> for saving log to file.</p>
<p>My application is on the shared(local) folder and there're could be several instances of the application runned from one path. In this case I could log information only from first programm, other instances of my applications couldn't log info <em>because log file is locked</em>.</p>
<p>When I'm using <strong>"log4net.Appender.FileAppender+MinimalLock"</strong> option there're available cases of information loss. Not all logs from both instances are saved to file.</p>
<p>How can I solve this problem and log info from parallel instances? Also what about performance degradation when I use "MinimalLock" option?</p>
<p>Thanks. Hope for your help.</p>
http://stackoverflow.com/questions/1796993/log4net-logging-ip-address-of-a-single-session-accross-several-threads0Log4Net logging IP address of a single session accross several threadsCodeMonkey2009-11-25T13:44:24Z2009-11-26T22:34:55Z
<p>Please refer to: <a href="http://stackoverflow.com/questions/1340643/how-to-enable-ip-address-logging-with-log4net">http://stackoverflow.com/questions/1340643/how-to-enable-ip-address-logging-with-log4net</a> which explains how to log an IP using log4net. </p>
<p>My problem is that in certain cases extra threads are spawned that belong to a session. Now I need log4net to understand (or the thread) to be able to log with the correct IP.</p>
<p>Currently when an additional Thread is spawned the thread logs to the logfile as (null) instead of an IP.</p>
<p>How do I ensure that all threads related to a Session know the IP of the remote host?</p>
http://stackoverflow.com/questions/1799344/log4net-config-file-loading-when-using-asp-net-development-server0log4net.config file loading when using asp.net development serverepitka2009-11-25T19:20:28Z2009-11-25T19:28:57Z
<p>So, I have log4net configuration in log4net.config file and I don't want to include it in the web.config. I initialize configuration in Application_Start like this</p>
<pre><code> log4net.Util.LogLog.InternalDebugging = true;
log4net.Config.XmlConfigurator.Configure(new FileInfo("log4net.config"));
</code></pre>
<p>But looking at the output window I see this</p>
<pre><code>'WebDev.WebServer.exe' (Managed): Loaded 'Builders023dc0f3207c463dbe9f49f346e5a7ca.dll'
log4net: XmlConfigurator: configuring repository [log4net-default-repository] using file [log4net.config]
log4net: XmlConfigurator: config file [C:\Program Files\Common Files\Microsoft Shared\DevServer\9.0\log4net.config] not found. Configuration unchanged.
</code></pre>
<p>I cannot figure out how to provide a path to the config file so that it is not hardcoded and is relative. I tried ("../log4net.config"), ("~/log4net.config") etc. Is Server.MapPath only option?</p>
http://stackoverflow.com/questions/1795310/log4net-and-extra-fields1Log4Net and extra fieldsDofs2009-11-25T07:49:02Z2009-11-25T12:20:09Z
<p>Hi,</p>
<p>Is it possible to insert extra fields into the database and use them in log4net? I have a UserId I would like to have in an extra field in the <code>log-table</code>. </p>
<p>I have added the field in the <code>log4net.config</code>:</p>
<pre><code><parameter>
<parameterName value="@userid" />
<dbType value="guid" />
<layout type="log4net.Layout.RawPropertyLayout" />
</parameter>
</code></pre>
<p>But how do I update the <code>ILog</code> interface to support the extra database field. So I could for example log: </p>
<pre><code> log4net.LogManager.GetLogger("logname").Fatal(message, exception, userid);
</code></pre>
http://stackoverflow.com/questions/1793228/asp-net-2-0-web-application-and-log4net-adonetappender0ASP.NET 2.0 Web Application and Log4Net AdoNetAppendernickyt2009-11-24T21:59:42Z2009-11-24T22:22:27Z
<p>I've used log4net before, but the last time I used it was in a ASP.NET 1.x application and I've never used the AdoNetAppender. Basically everything appears to be configured properly in my test solution, but nothing gets logged to my db table.</p>
<p>So the application running is an ASP.NET 2.0 WebApplication with AJAX Extensions 1.0 and uses SqlServer 2005 SP3 as the backend.</p>
<p>Here's the setup:
AssemblyInfo.cs has this</p>
<pre><code>// This tells Log4Net to look for a Log4Net.config file in the execution directory,
// in this case, the webroot. This file contains Log4Net configuration settings.
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log4Net.config", Watch = true)]
</code></pre>
<p>Default.aspx.cs has this</p>
<pre><code>using System;
using System.Data;
using log4net;
using System.IO;
namespace TestLog4NetInWebApplication
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//log4net.Config.XmlConfigurator.Configure(new FileInfo(Server.MapPath("~/Log4Net.config")));
log.Error("Hi from test application");
}
//log4net Configuration Attribute is in AssemblyInfo
private readonly static ILog log = LogManager.GetLogger(typeof(_Default));
}
}
</code></pre>
<p>here's my table creation script:</p>
<pre><code>CREATE TABLE [dbo].[Log] (
[Id] [int] IDENTITY (1, 1) NOT NULL,
[Date] [datetime] NOT NULL,
[Thread] [varchar] (255) NOT NULL,
[Level] [varchar] (50) NOT NULL,
[Logger] [varchar] (255) NOT NULL,
[Message] [varchar] (4000) NOT NULL,
[Exception] [varchar] (2000) NULL
)
</code></pre>
<p>and my Log4Net.config file looks like this:</p>
<pre><code><?xml version="1.0"?>
<log4net>
<appender name="AdoNetAppender" type="log4net.Appender.AdoNetAppender">
<bufferSize value="1" />
<threshold value="ALL"/>
<connectionType value="System.Data.SqlClient.SqlConnection, System.Data, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<connectionString value="Data Source=127.0.0.1;Initial Catalog=MyDb;Persist Security Info=True;User ID=user;Password=password" />
<commandText value="INSERT INTO [dbo].[Log]([Date],[Thread],[Level],[Logger],[Message],[Exception]) VALUES (@log_date, @thread, @logLevel, @logger, @message, @exception)" />
<parameter>
<parameterName value="@logDate" />
<dbType value="DateTime" />
<layout type="log4net.Layout.RawTimeStampLayout" />
</parameter>
<parameter>
<parameterName value="@thread" />
<dbType value="String" />
<size value="255" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%thread" />
</layout>
</parameter>
<parameter>
<parameterName value="@logLevel" />
<dbType value="String" />
<size value="50" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%level" />
</layout>
</parameter>
<parameter>
<parameterName value="@logger" />
<dbType value="String" />
<size value="255" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%logger" />
</layout>
</parameter>
<parameter>
<parameterName value="@message" />
<dbType value="String" />
<size value="4000" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%message" />
</layout>
</parameter>
<parameter>
<parameterName value="@exception" />
<dbType value="String" />
<size value="2000" />
<layout type="log4net.Layout.ExceptionLayout" />
</parameter>
</appender>
</log4net>
</code></pre>
<p>And here's my web.config:</p>
<pre><code><?xml version="1.0"?>
<configuration>
<configSections>
<section name="log4net"
type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" requirePermission="false"/>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<system.web>
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</controls>
</pages>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="false">
<assemblies>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpModules>
</system.web>
<system.web.extensions>
<scripting>
<webServices>
<!-- Uncomment this line to customize maxJsonLength and add a custom converter -->
<!--
<jsonSerialization maxJsonLength="500">
<converters>
<add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>
</converters>
</jsonSerialization>
-->
<!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. -->
<!--
<authenticationService enabled="true" requireSSL = "true|false"/>
-->
<!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved
and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and
writeAccessProperties attributes. -->
<!--
<profileService enabled="true"
readAccessProperties="propertyname1,propertyname2"
writeAccessProperties="propertyname1,propertyname2" />
-->
</webServices>
<!--
<scriptResourceHandler enableCompression="true" enableCaching="true" />
-->
</scripting>
</system.web.extensions>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules>
<add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode"
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
</configuration>
</code></pre>
<p>Am I missing anything? I can't see it being a permission issue as I'm not writing to file so any ideas anyone?</p>
http://stackoverflow.com/questions/769983/how-to-configure-log4net-programmatically-from-scratch-no-config3How to configure log4net programmatically from scratch (no config)jmgant2009-04-20T20:38:49Z2009-11-21T16:56:02Z
<p>This is a Bad Idea, I know, but...
I want to configure log4net programmatically from scratch with no config file. I'm working on a simple logging application for me and my team to use for a bunch of relatively small departmental applications we're responsible for. I want them to all log to the same database. The logging application is just a wrapper around log4net with the AdoNetAppender preconfigured.</p>
<p>All of the applications are ClickOnce deployed, which presents a small problem with deploying the config file. If the config file were part of the core project, I could set its properties to deploy with the assembly. But it's part of a linked application, so I don't have the option of deploying it with the main application. (If that's not true, somebody please let me know).</p>
<p>Probably because it's a Bad Idea, there doesn't seem to be much sample code available for programmatically configruating log4net from scratch. Here's what I have so far.</p>
<pre><code>Dim apndr As New AdoNetAppender()
apndr.CommandText = "INSERT INTO LOG_ENTRY (LOG_DTM, LOG_LEVEL, LOGGER, MESSAGE, PROGRAM, USER_ID, MACHINE, EXCEPTION) VALUES (@log_date, @log_level, @logger, @message, @program, @user, @machine, @exception)"
apndr.ConnectionString = connectionString
apndr.ConnectionType = "System.Data.SqlClient.SqlConnection, System.Data, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
apndr.CommandType = CommandType.Text
Dim logDate As New AdoNetAppenderParameter()
logDate.ParameterName = "@log_date"
logDate.DbType = DbType.DateTime
logDate.Layout = New RawTimeStampLayout()
apndr.AddParameter(logDate)
Dim logLevel As New AdoNetAppenderParameter()
logLevel.ParameterName = "@log_level"
'And so forth...
</code></pre>
<p>After configuring all the parameters for <code>apndr</code>, I at first tried this...</p>
<pre><code>Dim hier As Hierarchy = DirectCast(LogManager.GetRepository(), Hierarchy)
hier.Root.AddAppender(apndr)
</code></pre>
<p>It didn't work. Then, as a shot in the dark, I tried this instead.</p>
<pre><code>BasicConfigurator.Configure(apndr)
</code></pre>
<p>That didn't work either. Does anybody have any good references on how to configure log4net programmatically from scratch with no config file?</p>
http://stackoverflow.com/questions/1750934/best-logging-approach-for-composite-app1Best logging approach for composite app?David Veeneman2009-11-17T18:45:18Z2009-11-20T13:43:47Z
<p>I am creating a Composite WPF (Prism) app with several different projects (Shell, modules, and so on). I am getting ready to implement logging, using Log4Net. It seems there are two ways to set up the logging:</p>
<ul>
<li><p>Let the Shell project do all of the actual logging. It gets the reference to Log4Net, and other projects fire composite events to let the Shell know that it needs to log something. Those projects fire the events only for levels where logging is turned on in the Shell's app.config file (DEBUG, ERROR, etc), so as not to degrade performance.</p></li>
<li><p>Give each project, including modules, a Log4Net reference, and let the project do its own logging to a common log file, instead of sending messages to the Shell for logging.</p></li>
</ul>
<p>Which is the better approach? Or, is there another approach that I should consider? Thanks for your help.</p>
http://stackoverflow.com/questions/1767253/log4net-with-net-4-02log4net with .NET 4.0Jonathan2009-11-19T23:13:18Z2009-11-19T23:13:18Z
<p>I've thrown together some code to tinker with the new .Net 4.0/VS 2010 pieces, but I can't seem to find a build of my logging framework of choice (log4net) for 4.0, and I'm getting reference errors with the 2.0 version. Is there a 4.0 version available somewhere? I'm not asking for new features, just a version that's already been rebuilt against the new assemblies. Anyone know where I can find a build of 1.2.10 built for the 4.0 framework?</p>
http://stackoverflow.com/questions/219668/sharepoint-and-log4net2SharePoint and Log4NetNico2008-10-20T19:55:38Z2009-11-19T23:08:35Z
<p>I'm looking for best practices to integrate log4net to SharePoint for web request, feature activation and all timer stuff. </p>
<p>I have several subprojects in my farm, and I would like to have only one Log4Net.config file.</p>
<p><strong>[Edit]</strong><br />
Not only I need to configure log4net for the web application, which is easy to do (I use global.asax, and a log4net.config file, so I can modify log settings withtout reloading the webapp), but I also need to log asynchronous events:</p>
<ul>
<li>Event Handler (like ItemAdded)</li>
<li>Timer Jobs</li>
<li>...</li>
</ul>
http://stackoverflow.com/questions/1762158/log4net-how-to-test-udp-appender-quick0Log4net : How to test UDP Appender quickJL2009-11-19T09:58:12Z2009-11-19T10:39:46Z
<p>Just setup a UPD appender, and its not working, how can I very quickly check if messages are being sent outbound from the app?</p>
http://stackoverflow.com/questions/1742078/log4net-configuration-for-console-app1log4net Configuration for console app.mxg2009-11-16T13:03:57Z2009-11-18T07:12:32Z
<p>can anyone suggest how to configure the log4net for an console app?</p>
<p>Or at least how/where to catch the <code>Application_Start</code> event? (It seams that some calls are required at this moment)</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1744088/log4net-log-files-disappear-when-service-restarted0log4net log files disappear when service restartedJarrod2009-11-16T18:50:09Z2009-11-18T03:14:43Z
<p>We are using log4net to create our logfiles from Windows services, and we are using the RollingFileAppender rolling based on date. The version of log4net we are using is 1.2.9. Now for the issue. We are rolling based on date, and on the days we need to restart a service the log file for that day is not rolled.</p>
<p>Example: Say today is November 16th. I have logfile.txt that contains today's information, and I have logfile.txt.20091115, logfile.txt.20091112, and logfile.txt.20091111. I am missing the files from 11/13 and 11/14 because the service was restarted on both of those days.</p>
<p>As anyone else experienced this or know why this is happening?</p>
<p>Update:</p>
<p>Here is my log4net.config appender section</p>
<pre><code><appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
<param name="File" value="logfile.txt" />
<param name="AppendToFile" value="true" />
<param name="MaxSizeRollBackups" value="10" />
<param name="MaximumFileSize" value="1000KB" />
<param name="RollingStyle" value="Date" />
<param name="DatePattern" value="yyyyMMdd" />
<param name="StaticLogFileName" value="true" />
<layout type="log4net.Layout.PatternLayout">
<param name="Header" value="[Service Started]&#13;&#10;" />
<param name="Footer" value="[Service Stopped]&#13;&#10;" />
<param name="ConversionPattern" value="%d [%t] %-5p %c - %m%n" />
</layout>
</appender>
</code></pre>
<p>As you can see the AppendToFile param is set to true.</p>
<p>I want to clarify something. The file does not get overwritten at the time I restart the service. When the file is suppose to roll based on date, is when the file disappears.</p>
http://stackoverflow.com/questions/1746870/log4net-output-is-missing-from-nuit-gui0log4net output is missing from nuit GUIJulian Easterling2009-11-17T05:54:20Z2009-11-17T13:54:10Z
<p>I have a class library project in Visual Studio 2008. In that project, I have an Assembly attribute in the AssemblyInfo.cs file to load the log4net file. that file has only one appender, the console appender. When I run NUnit GUI 2.5.2.9222, I don't get any log output. I've tried several variations on loading the configuration file. I've googled, but the results are hit or miss as to being solved and all of the solutions have not worked for me... So, I'm turning to StackOverflow... Has anyone got log4net working while running unit test via NUnit GUI?</p>
http://stackoverflow.com/questions/1747199/how-to-configure-a-bufferred-and-timeout-based-appender-in-log4net1how to configure a bufferred and timeout based appender in log4net?Mark G2009-11-17T07:37:26Z2009-11-17T07:37:26Z
<p>I want to configure a Forwarding-Appender in log4net, that does the following:</p>
<ol>
<li>It buffers up to N messages. When N is reached, its trigger is executed and it forwards its buffer. Not lossy.</li>
<li>It forwards its buffered messages if a defined timeout is reached. So the trigger is executed also when a timeout is reached.</li>
<li>It forwards its buffered messages when the hosting program terminates/closed.</li>
</ol>
<p>So what I need is a composite trigger: based on count, timeout, and program termination.</p>
<p>How can I configure such appender, if at all?</p>
http://stackoverflow.com/questions/1740911/best-practice-to-log-an-a-commercial-transaction-object0Best Practice to log an a "commercial" transaction objectOli2009-11-16T08:56:27Z2009-11-16T10:24:22Z
<p>Hi,</p>
<p>I'm supposed to be logging a "commercial" transaction object (e.g. the request/response of a credit card processing gateway).</p>
<p>Someone mentioned using log4net to store that... but it just doesn't feel right, especially given that some information (i.e. properties on the object) need to be either omitted entirely or massaged (e.g. only log the last 4 digits of the credit card involved in the transaction).</p>
<p>I was thinking more of a custom "ITransactionLogger". Thoughts?</p>
http://stackoverflow.com/questions/1731513/best-practice-to-include-log4net-external-config-file-in-asp-net2Best practice to include log4Net external config file in ASP.NETMartin Buberl2009-11-13T19:55:22Z2009-11-13T22:32:59Z
<p>I have seen at least two ways to include an external log4net config file in an ASP.NET web application:</p>
<p>Having the following attribute in your AssemblyInfo.cs file:</p>
<pre><code>[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log.config", Watch = true)]
</code></pre>
<p>Calling the XmlConfigurator in the Global.asax.cs:</p>
<pre><code>protected void Application_Start()
{
XmlConfigurator.Configure(new FileInfo("Log.config"));
}
</code></pre>
<p>What would be the best practice to do it?</p>
http://stackoverflow.com/questions/1723426/how-do-i-stop-log4net-from-logging-when-running-tests-in-nunit-testrunner1How do i stop log4net from logging when running tests in NUnit TestRunnerDavid_0012009-11-12T16:16:22Z2009-11-12T16:27:59Z
<p>Let me explain my scenario first:</p>
<ol>
<li>I have around 2000 tests to run, which take about 30 seconds in NUnit</li>
<li>I want to find out what's taking the time</li>
<li>I open Ants Profiler, and get it to profile the NUnit TestRunner, and load my test dll into the TestRunner</li>
<li>I then run the tests...</li>
</ol>
<p>However, running the tests whilst profiling takes a <strong>lot</strong> longer (about 5 minutes to run all the tests, rather than 30 seconds). When i look through the timings in Ants Profiler, it seems log4net is being called in a lot of places, which seems to be taking up the time.</p>
<p>So, this is my question: how do i stop log4net logging stuff when i'm running the tests in this manner? </p>
<p>I can find 3 config files:</p>
<ol>
<li>In the test dll folder, there's a config.log4net file. I've put <level value="OFF" /> in there, and deleted all the appender sections</li>
<li>In the test runner folder, there's a nunit.exe.config, and a nunit-console.exe.config file - i've put <level value="OFF" /> in both of those.</li>
<li>I can't find any config files to play with in the ants profiler folder.</li>
</ol>
<p>None of this seems to work, looking through the profile results i can see log4net being called, and it's definitely calling methods to output the logging information.</p>
http://stackoverflow.com/questions/1716629/cant-get-log4net-to-output-anything-when-using-nhibernate1Can't get log4net to output anything when using NHibernateJon Kruger2009-11-11T17:06:22Z2009-11-12T14:08:20Z
<p>I have this in my web.config file (edited to reflect some changes):</p>
<pre><code> <configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
</configSections>
<log4net debug="true">
<appender name="DebugAppender" type="log4net.Appender.AspNetTraceAppender">
<layout type="log4net.Layout.PatternLayout, log4net">
<param name="ConversionPattern" value="%d %p %m%n" />
</layout>
</appender>
<appender name="DataLog" type="log4net.Appender.RollingFileAppender">
<file value="c:\temp\nhlog.txt" />
<appendToFile value="true" />
<maximumFileSize value="100MB" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="5" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%d{HH:mm:ss.fff} [%t] %-5p %c - %m%n" />
</layout>
</appender>
<root>
<priority value="DEBUG" />
<appender-ref ref="DebugAppender" />
</root>
<logger name="NHibernate" additivity="false">
<level value="INFO"/>
<appender-ref ref="DebugAppender"/>
</logger>
</log4net>
</code></pre>
<p>I'm calling log4net.Config.XmlConfigurator.Configure() from Application_Start().</p>
<p>I have [assembly: log4net.Config.XmlConfigurator(Watch = true)] in the AssemblyInfo.cs file in my web project.</p>
<p>Why do I get no NHibernate debugging messages in my output window? (I trying to get ALL of the messages that NHibernate spits out.) If I use the RollingFileAppender it works fine. I've tried the DebugAppender, TraceAppender, OutputDebugStringAppender, and AspNetTraceAppender and none of them output stuff to the output window.</p>
http://stackoverflow.com/questions/768903/could-not-load-file-or-assembly-log4net2Could not load file or assembly 'log4netjdt1992009-04-20T15:59:16Z2009-11-12T11:39:32Z
<p>Ok I am having a very odd issue when deploying one of our web applications to our live servers.</p>
<p>Our application uses log4net to log a lot of actions quite heavily and after a couple of hours after being deployed we get the following exception.</p>
<p>Could not load file or assembly 'log4net, Version=1.2.9.0, Culture=neutral, PublicKeyToken=b32731d11ce58905' or one of its dependencies. Access is denied.</p>
<p>Here are the relevant web.config additions I use.</p>
<pre><code><configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
</configSections>
<log4net>
<appender name="ErrorLogFileAppender" type="log4net.Appender.RollingFileAppender">
<param name="File" value="D:\SomeLocation\Errorlog"/>
<param name="AppendToFile" value="true"/>
<param name="RollingStyle" value="Size"/>
<param name="maxSizeRollBackups" value="-1" />
<param name="maximumFileSize" value="100MB" />
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%d [%t] %-5p %c [%x] - %m%n"/>
</layout>
<filter type="log4net.Filter.LevelRangeFilter">
<param name="LevelMin" value="FATAL" />
<param name="LevelMax" value="FATAL" />
</filter>
</appender>
<appender name="BookingLogFileAppender" type="log4net.Appender.RollingFileAppender">
<param name="File" value="D:\SomeLocation\BookingInfoLog"/>
<param name="AppendToFile" value="true"/>
<param name="RollingStyle" value="Size"/>
<param name="maxSizeRollBackups" value="-1" />
<param name="maximumFileSize" value="100MB" />
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%d [%t] %-5p %c [%x] - %m%n"/>
</layout>
<filter type="log4net.Filter.LevelRangeFilter">
<param name="LevelMin" value="INFO" />
<param name="LevelMax" value="FATAL" />
</filter>
</appender>
<root>
<level value="ALL"/>
<appender-ref ref="BookingLogFileAppender"/>
<appender-ref ref="ErrorLogFileAppender"/>
</root>
</log4net>
</code></pre>
<p>It is working fine on our local machines an dev server but just not on the live.</p>
<p>Incidentally it seems to break after the JIT compiler runs on the server after a web.config update or an app pool recycle, or even just a long period of time!</p>
<p><strong>UPDATE:</strong> Our live servers run all websites from a share location. I managed to replicate this issue on another server running the application from a share. When setting the site to run from a local drive the issue goes away but our hosting requires us to run from a share. Any ideas why log4net would have permissions issues running from a share. Again the app runs first time until another JIT compilation occurs</p>
http://stackoverflow.com/questions/1713043/what-is-the-best-pattern-for-using-same-log4net-logger-across-many-assemblies-in4What is the best pattern for using same Log4net logger across many assemblies in a solution?Topdown2009-11-11T04:37:33Z2009-11-11T19:37:00Z
<p>I have a solution consisting of a main winforms app, with associated internally written class library dll’s from which I wish to log. This logging should performed by the same logger, regardless of whether the main UI client or the associated dll’s call this. The dll’s may of course be used by other apps that have different loggers in other solutions, but in these circumstances will have a different log4net config and maybe a different suite of appenders altogether.</p>
<p>One approach would be to create a singleton within the main app and log from that, however since log4net is its own singleton, that can be referenced so as long as we pass the same string (or type) to <code>log4net.LogManager.GetLogger</code> we will be logging to the same destination (in my case I wish to use a RollingFileAppender). </p>
<p>This works. However, given that the DLL will have a number of classes it would mean each class instantiation or static class from which we wish to log would require i) an argument defining the logger name (in order to log to the same destination) and ii) at each entry point would need to call <code>log4net.LogManager.GetLogger(loggerName)</code>. </p>
<p>What is the best pattern to use here? Would the correct approach be to create a singleton instance in each assembly? My concern here is that we will still need to pass in the logger name to each entry point for the dll, which seems like overkill. In order to avoid passing in the logger name, I might assume that it is always equal to <code>System.Reflection.Assembly.GetCallingAssembly().GetName().Name</code>. </p>
<p>If this is all too difficult for log4net, are there other easier solutions such as the Enterprise Logging Block?
Or is the best solution an aspect oriented programming (AOP) approach?</p>
<p><a href="http://stackoverflow.com/questions/576185/logging-best-practices/576420#576420">Reference for anti-pattern approach for singleton here</a> . </p>
http://stackoverflow.com/questions/1711787/log4net-how-do-i-use-a-date-pattern-in-a-header-footer0log4net: how do I use a date pattern in a header/footer?User2009-11-10T22:45:51Z2009-11-10T22:45:51Z
<p>Here's my appender configuration from my app.config. This just prints out the literal string instead of translating it to the date (i.e., it literally prints "[START: %date{MM/dd/yy HH:mm} ]")</p>
<pre><code><appender name="RollingLogFileAppender"
type="log4net.Appender.RollingFileAppender">
<file value="C:\somelog" />
<appendToFile value="true" />
<rollingStyle value="Date" />
<datePattern value="-yyyy-MM-dd'.txt'" />
<layout type="log4net.Layout.PatternLayout">
<header value="[START: %date{MM/dd/yy HH:mm} ]&#13;&#10;" />
<conversionPattern value="%date{yyyy-MM-dd HH:mm:ss} - %message" />
<footer value="[END]&#13;&#10;&#13;&#10;" />
</layout>
</appender>
</code></pre>
<p>How can I get this to print the date/time in the header?</p>
http://stackoverflow.com/questions/1689399/reduce-number-of-config-files-to-as-few-as-possible0Reduce number of config files to as few as possibleScott2009-11-06T18:24:36Z2009-11-06T18:24:36Z
<p>For most of my applications I use <a href="http://ibatis.apache.org/dotnet.cgi" rel="nofollow">iBatis.Net</a> for database access/modeling and <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">log4Net</a> for logging. In doing this, I need a number of *.config files for each project. For example, for a simple application I need to have the following *.config files: </p>
<ul>
<li>app.config ([AssemblyName].[Extention].config)</li>
<li>[AssemblyName].SqlMap.config</li>
<li>[AssemblyName].log4Net.config</li>
<li>[AssemblyName].SqlMapProperties.config</li>
<li>providers.config</li>
</ul>
<p>When these applications go from DEV to TEST to PRODUCTION environments, the settings contained in these files change depending on the environment. </p>
<p>When the number of files get compounded by having 5-10 (or more) supporting executables per project, the work load on the infrastructure team (the ones doing the roll-outs to the different environments) gets rather high. We also have a high risk of one of the config files being missed, or a mistype in the config file. </p>
<p>What is the best way to avoid these risks? Should I combine all of the config files into one file? (is that possible with iBatis?) I know that with VisualStudio 2010 they introduce transforms for these config files that allow the developer to setup all the settings for the different environments and then dynamically (depending on the build kicked off) the config files get updated to the correct versions. (<a href="http://weblogs.asp.net/gunnarpeipman/archive/2009/06/16/visual-studio-2010-web-config-transforms.aspx" rel="nofollow">VS 2010 - transforms</a>)</p>
<p>Thank you for any help that you can provide.</p>
http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances0logging in log4net to different appenders based on circumstancesGONeale2009-11-05T01:59:35Z2009-11-05T02:38:47Z
<p>Hi there,</p>
<p>I am using log4net and in one class require logging to a RollingFile appender, but then in another class, I wish to log to the event log + rolling file + console appender.</p>
<p>What is the best practice? and could I see some sample code?</p>
<p>By the way to make things more difficult, I am using <em>Castle Windsor Logging Facility</em> with Log4net to resolve my Logger instance.</p>
<p>If it helps, I was thinking this below, but have no idea if this is best practice, or how to activate a particular logger based on 'name' still utilising my current logger instance from windsor:</p>
<p><strong>log4net.config:</strong></p>
<pre><code>...
<logger name="EventLogOnly">
<level value="ALL" />
<appender-ref ref="EventLogAppender" />
</logger>
<logger name="ConsoleEventLog">
<level value="ALL" />
<appender-ref ref="ColoredConsoleAppender" />
<appender-ref ref="EventLogAppender" />
</logger>
...
</code></pre>
<p><strong>castle windsor container builder class:</strong></p>
<pre><code>container.AddFacility("logging.facility",
new LoggingFacility(LoggerImplementation.Log4net, "log4net.config"));
</code></pre>
<p><strong>class in which to log:</strong></p>
<pre><code>private ILogger Logger;
public Test(ILogger logger) {
Logger.Info("Can I log under event log only?");
Logger.Info("Now can I log under both?");
}
</code></pre>
<p>Thanks guys.</p>
http://stackoverflow.com/questions/1674411/how-to-filter-by-ndc0How to filter by NDC?mutzel2009-11-04T15:10:40Z2009-11-04T15:36:29Z
<p>In log4net I want to filter log messages by the value of the NDC like this:</p>
<pre><code> <filter type="log4net.Filter.PropertyFilter">
<Key value="NDC" />
<stringToMatch value="MyContext" />
</filter>
</code></pre>
<p>Somehow the above filter is not working like I expected. </p>
<p>How do I have to configure a filter for my appender that will only match a certain NDC?</p>
http://stackoverflow.com/questions/1662300/empty-nhibernate-log-file-with-log4net1Empty NHibernate log file with log4netHamman3592009-11-02T16:31:36Z2009-11-03T15:03:35Z
<p>I'm trying to get logging enabled on my application using Fluent NHibernate and log4net. I have tried the things described <a href="http://stackoverflow.com/questions/1560104/log4net-not-creating-log-file-for-nhibernate">here</a>, <a href="http://stackoverflow.com/questions/743323/nhibernate-enabling-log4net">here</a>, <a href="http://stackoverflow.com/questions/129133/how-do-i-view-the-sql-that-is-generated-by-nhibernate">here</a> and <a href="http://www.davesquared.net/2008/01/viewing-sql-generated-by-nhibernate.html" rel="nofollow">here</a>. The log file is getting created, but nothing is getting written to it. The other log files for this and other applications all seam to be working OK, so I'm assuming the issue is something with my configuration.</p>
<p>Here is the code I have put in place to try to get this working:</p>
<p>The section of the config file with all of my log4net settings relevant to this APP:</p>
<pre><code><appender name="RollingFileAppenderNHibernate"
type="log4net.Appender.RollingFileAppender">
<file value="C:\temp\RollingLogFileNHibernate" />
<appendToFile value="true" />
<ImmediateFlush value="true" />
<rollingStyle value="Date" />
<DatePattern value="yyyyMMdd.\l\o\g" />
<StaticLogFileName value="false" />
<MaxSizeRollBackups value="1" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>
</appender>
<logger name="NHibernate.SQL"
additivity="false">
<level value="ALL"/>
<appender-ref ref="RollingFileAppenderNHibernate"/>
</logger>
</code></pre>
<p>My NHibernate configuration:</p>
<pre><code>public static ISessionFactory CreateSessionFactory()
{
return Fluently.Configure()
.Database(OracleClientConfiguration.Oracle10
.ConnectionString((conn =>
conn.FromConnectionStringWithKey("APPDB")))
.ShowSql())
.Mappings(m =>
m.FluentMappings.AddFromAssemblyOf<{ObjectName}>())
.BuildSessionFactory();
}
</code></pre>
<p>In the Application_Start() of my Global.asax.cs:</p>
<pre><code>log4net.Config.XmlConfigurator.Configure();
</code></pre>
<p>I have tried several different variations of these settings but the result is always the same, an empty log file.</p>
http://stackoverflow.com/questions/1663891/is-log4net-dead8Is log4net dead?Chip2009-11-02T21:38:48Z2009-11-02T22:17:37Z
<p>I'm looking for a logging framework and it seems <a href="http://logging.apache.org/log4net/" rel="nofollow">log4net</a> is or was very popular. The last release was over 2 years ago. It has not been updated for .net 3.0 or 3.5 or even visual studio 2008. Is there something more recent (other then entlib) I should be considering?</p>
http://stackoverflow.com/questions/1661809/debugger-break-higher-up-the-stacktrace0Debugger.Break() higher up the stacktraceNoam Gal2009-11-02T15:05:35Z2009-11-02T15:05:35Z
<p>I wrote a simple <code>MessageBoxAppender</code> for log4net. I added an OK option to enable debugging (either to an attached debugger, or launching a new one).<br />
The problem right now is that the debugger stops at the <code>Debugger.Break()</code> line (naturally). Is there a way to cause it to pause further up the stacktrace? Preferably at the location of the Logger call?</p>
http://stackoverflow.com/questions/607722/any-suggestions-for-log4net-configuration-gui3Any Suggestions for Log4Net Configuration Gui?rathkopf2009-03-03T19:12:25Z2009-11-02T10:17:35Z
<p>Does anyone have any suggestions for a Gui for editing the log4net config files. We have people in the field who need to be able to increase, decrease, or specialize logging but don't have the background to mess in the XML.</p>
http://stackoverflow.com/questions/1637349/sharepoint-timer-job-and-log4net0Sharepoint Timer Job and log4netAnton Polyakov2009-10-28T13:47:51Z2009-10-28T16:33:52Z
<p>Hi mates</p>
<p>I'm developing a custom SharePoint solution which consist of a feature and a timer job (which is created by the feature in FeatureActivated).
In my solution I want to use log4net for logging (I know about ULS). </p>
<p>Everything is fine with log4net in the feature itself (just placed log4net.config near web.config and all is fine), but I have completely no idea how to initialize log4net from timer job (taking into account it is run not by IIS but by OSWTIMER).</p>
<p>Can someone please help me finding answers for the questions:</p>
<ol>
<li>Where to store log4net.config and how pass it to the job?</li>
<li>Do I need to initialize log4net each time Execute() method is called?</li>
</ol>
<p>Thanks!</p>
http://stackoverflow.com/questions/1629980/log4net-object-reference-not-set-issue0Log4net - object reference not set issueJL2009-10-27T10:39:46Z2009-10-27T12:23:16Z
<p>I have 2 test and 1 production server. </p>
<p>In my global.asax file - I have this one line of code: </p>
<pre><code>void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
Logging.ConfigureLogging();
}
</code></pre>
<p>On both test servers its working fine, but on the production server, its generating an object reference not set exception. Any ideas on what in the production environment could be causing this error?</p>