Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Being a log4net newb / boob I just copied lines from an NHibernate example project where I can see the log.txt file is updated. Is there a quick answer why mine isn't creating the file?

Cheers,
Berryl

[assembly: log4net.Config.XmlConfigurator(Watch = true)]

I saw another post here saying this should go in AssemblyInfo, but in the example project this is just another line in a static helper class. Not wanting to 'mess with' assemblyInfo I also put this in a static helper, along with the following to actually log in the same static helper class:

private static readonly log4net.ILog _log = log4net.LogManager.GetLogger( System.Reflection.MethodBase.GetCurrentMethod().DeclaringType );

And in app.config, I have

<configSections>
    <section
        name="log4net"
        type="log4net.Config.Log4NetConfigurationSectionHandler,log4net"
    />
</configSections>

    <!-- This section contains the log4net configuration settings -->
<log4net>
    <!-- Define an output appender (where the logs can go) -->
    <appender name="LogFileAppender" type="log4net.Appender.FileAppender, log4net">
        <param name="File" value="log.txt" />
        <param name="AppendToFile" value="false" />
        <layout type="log4net.Layout.PatternLayout, log4net">
            <param name="ConversionPattern" value="%d [%t] %-5p %c [%x] &lt;%X{auth}&gt; - %m%n" />
        </layout>
    </appender>
    <appender name="LogDebugAppender" type="log4net.Appender.DebugAppender, log4net">
        <layout type="log4net.Layout.PatternLayout, log4net">
            <param name="ConversionPattern" value="%d [%t] %-5p %c [%x] &lt;%X{auth}&gt; - %m%n"/>
        </layout>
    </appender>

    <!-- Setup the root category, set the default priority level and add the appender(s) (where the logs will go) -->
    <root>
        <priority value="ALL" />
        <appender-ref ref="LogFileAppender" />
        <appender-ref ref="LogDebugAppender"/>
    </root>

    <!-- Specify the level for some specific namespaces -->
    <!-- Level can be : ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF -->
    <logger name="NHibernate">
        <level value="ALL" />
    </logger>
</log4net>
share|improve this question

2 Answers

up vote 1 down vote accepted

You are doing the right thing.

Turn on this setting:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
        <add key="log4net.Internal.Debug" value="true"/>
    </appSettings>
</configuration>

And paste the resulting output here.

share|improve this answer
wow, time warp! better late than never :--) – Berryl Jan 7 at 21:44
Just thought i would write it up for when people run their heads against the same wall ; ) – Casper Leon Nielsen Jan 8 at 10:36

I'm not sure what the problem is but could you try this this configuration mecanism instead

GLOBAL.ASAX

protected void Application_Start(Object sender, EventArgs e)
{
    log4net.Config.XmlConfigurator.Configure();
}

Are you sure you're looking in the correct place for the log file?

Not very sure about this but you could also try to add an appender to the nhibernate logger

<logger name="NHibernate">
        <level value="ALL" />
        <appender-ref ref="LogFileAppender" />
</logger>
share|improve this answer
I just did a Windows search at the solution root folder, although it I think it should wind up in debug for the calling assembly (Tests in this case). It is a desktop app though... – Berryl May 8 '10 at 16:58
The log file should be on the folder where the exe is placed (probably something like Debug/bin) – Claudio Redi May 8 '10 at 17:01
It isn't showing up there. Can the call to the XmlConfigurator be in any class in the executing assembly? I have it in a unit test now but it still isn't being generated – Berryl May 9 '10 at 15:34
You can call it anywhere. I'd also suggest you to create a path "c:\temp" and store the log there. – Claudio Redi May 10 '10 at 13:24
This isnt solving the problem, it is reformulating (badly) the solution. The OP is demonstrating the correct usage pattern. – Casper Leon Nielsen Jan 7 at 12:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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