up vote 11 down vote favorite
3
share [g+] share [fb]

Hey all. This is my first StackOverflow question.

I'm already have a db connection string in my web.config file. I scanned the log4net docs, but can't seem to find a way to use it within the log4net section of my web.config file. Is is possible to do something like this?

<connectionStrings>
    <add name="connStr" connectionString="Data Source=localhost; ..." />
</connectionStrings>

<log4net>
    <appender name="AdoNetAppender" type="log4net.Appender.AdoNetAppender">
    <connectionString connectionStringName="connStr"/>
      ...
</log4net>

Thanks!

link|improve this question
feedback

3 Answers

up vote 14 down vote accepted

Create a class that extends AdoNetAppender - say, WebAppAdoNetAppender. Implement the ConnectionString property in that class, and retrieve the connection string from your web.config file in that property setter.

<log4net>
    <appender name="AdoNetAppender" type="MyApp.WebAppAdoNetAppender">
    ...

...

public class WebAppAdoNetAppender : log4net.Appender.AdoNetAppender
{
    public new string ConnectionString
    {
        get { return base.ConnectionString; }
        set { base.ConnectionString = ...   }
    }
}
link|improve this answer
Stefan Egli's link indicates that a parameter doesn't yet exist. For the time being, this seems like the best way to go about it. Thanks Mr. Petrotta! – MrSharps Mar 14 '10 at 12:50
feedback

It is possible to use a DB connection string specified in web.config without creating a new class, though you would need to use log4net build that hasn't been released yet. It can be downloaded from SVN repository http://svn.apache.org/viewvc/logging/log4net/trunk/

Your config will look as follows:

<connectionStrings>
    <add name="connStr" connectionString="Data Source=localhost; ..." />
</connectionStrings>

<log4net>
    <appender name="AdoNetAppender" type="log4net.Appender.AdoNetAppender">
    <connectionType value="System.Data.SqlClient.SqlConnection, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <connectionStringName value="connStr" />
      ...
</log4net>

Please note that connectionType still needs to be specified.

link|improve this answer
1  
This is now available in the latest release, 1.2.11. Works fine. – dove Dec 22 '11 at 12:15
@dove Nice to know, thanks. – 10p Dec 22 '11 at 13:23
feedback

fyi this will be implemented in 1.2.11 according to this. however I have no idea when they are going to release it.

link|improve this answer
sounds like the feature I want is forthcoming – MrSharps Mar 14 '10 at 12:49
feedback

Your Answer

 
or
required, but never shown

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