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.

I have a console application for which I am trying to setup logging with log4net. I have done all the basic steps for setting it up -

  1. Added Configuration in App

    <configSections>
      <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
    </configSections>
    <appSettings>
      <add key="LogFileRootFolderPath" value="C:\TestApplicationLogs\"/>
    </appSettings>
    <log4net>
      <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
        <file value="TestApplication.log" />
        <appendToFile value="true" />
        <rollingStyle value="Composite" />
        <maxSizeRollBackups value="14" />
        <maximumFileSize value="15000KB" />
        <datePattern value="yyyyMMdd" />
        <staticLogFileName value="true" />
        <layout type="log4net.Layout.PatternLayout">
          <conversionPattern value="{%level}%date{MM/dd HH:mm:ss} - %message%newline"/>
        </layout>
      </appender>
      <root>
        <level value="All" />
        <!-- You can use levels, in increasing order of verbosity: Off, Fatal, Error, Warn, Info, Debug, All -->
        <appender-ref ref="RollingFileAppender" />
      </root>
    </log4net>
    

P.S. I have created a new folder 'TestApplicationLogs' in C:\

  1. Added [assembly: log4net.Config.XmlConfigurator(Watch = true)] in AssemblyInfo.cs

  2. In Program.cs

        private static readonly log4net.ILog log = log4net.LogManager.GetLogger
        (System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
    
         static void Main(string[] args)
         {
             log.Info("App Started");
     }
    

Can anyone please guide what is missing?

share|improve this question
Sorry, my mistake, I was looking for the log file at wrong place :( – iniki Nov 30 '11 at 10:38

1 Answer

up vote 1 down vote accepted

I don't see where you define that C:\TestApplicationLogs as the directory where it should log to. In the log4net config you have just specified the file name, so it will log to the directory where you execute your exe.

share|improve this answer

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.