up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to get logging enabled on my application using Fluent NHibernate and log4net. I have tried the things described here, here, here and here. 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.

Here is the code I have put in place to try to get this working:

The section of the config file with all of my log4net settings relevant to this APP:

<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>

My NHibernate configuration:

public static ISessionFactory CreateSessionFactory()
{
    return Fluently.Configure()
        .Database(OracleClientConfiguration.Oracle10
        .ConnectionString((conn =>
            conn.FromConnectionStringWithKey("APPDB")))
        .ShowSql())
        .Mappings(m =>
            m.FluentMappings.AddFromAssemblyOf<{ObjectName}>())
        .BuildSessionFactory();
}

In the Application_Start() of my Global.asax.cs:

log4net.Config.XmlConfigurator.Configure();

I have tried several different variations of these settings but the result is always the same, an empty log file.

link|improve this question

77% accept rate
Is this really ALL of your configuration? It will surely not work without the <log4net> and <root> elements. – Peter Lillevold Nov 3 '09 at 8:59
No, that isn't all of my configuration, but it is the part that is relevant to this APP. I've updated the question to make this fact a little clearer. – Hamman359 Nov 3 '09 at 15:05
feedback

2 Answers

If the XML is a true repesentation of your config, I can see two potential problems:

  1. There is no '>' at the end of the appender opening tag.
  2. There is &gt; at the end of the layout closing tag instead of '>'.

Of course, these may have just been caused by the copy and paste into this post.

link|improve this answer
Thanks, those were copy and paste errors. I've now corrected them. – Hamman359 Nov 3 '09 at 14:57
feedback
up vote 0 down vote accepted

It turns out that the problem had to do with the overly complicated and convoluted way that logging was handled in our framework code that we have wrapped around log4net. Once I figured out the correct hoops to jump through the logging started working correctly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.