Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sir,

My project structure is as bellow,

Solution 'ab.ABCD'(4project)
>D:\project\ABCD.web\
>App_Code
>--------
>--------
>Bin
>Pages
>--------
:
>web.config
>ab.ABCD.BLL
>Properties
>References
>HomeServices.cs
:
>ab.ABCD.DAL
>Properties
>References
>Read.cs
:
>ab.ABCD.Util
>Properties
>References

As per the refference How to use log4net[^]
I inserted the bellow code in web.config under D:\project\ABCD.web\

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

<log4net debug="true">
    <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
        <file value="C:\\TestProj\\TestLog.txt" />
        <appendToFile value="true" />
        <rollingStyle value="Size" />
        <maxSizeRollBackups value="10" />
        <maximumFileSize value="10MB" />
        <staticLogFileName value="true" />
        <layout type="log4net.Layout.PatternLayout">
            <conversionPattern value="%-5p %d %5rms %-22.22c{1} %-18.18M - %m%n" />
        </layout>
    </appender>

    <root>
        <level value="DEBUG" />
        <appender-ref ref="RollingLogFileAppender" />
    </root>
</log4net>



SQL
Where i need to put the code
'[assembly: log4net.Config.XmlConfigurator(ConfigFile="Web.config", Watch=true)]'
?

Regards,
Arif Tk
Posted

Inside the Properties you will get the file "AssemblyInfo.cs"
 
Share this answer
 
Comments
ariftk 9-Jan-13 6:38am    
There is no Properties under D:\project\ABCD.web\
IpsitaMishra 9-Jan-13 23:56pm    
you have mention in your qns itself

>ab.ABCD.DAL
>"Properties"
>References
>Read.cs
:):)
Previously D:\project\ABCD.web\ was in the website format so that there was no file like Properties/AsemblyInfo.cs.Now i converted website to web application,now it is working fine.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900