Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
This document describes how to configure logging in EPiServer CMS and provides information on how to interpret the logged information and best practices. The intended audiences are developers and system administrators. The logging system in EPiServer CMS uses the log4net framework and you are recommended to read the introduction at the Log4net website before reading this document.
There are seven levels of logging that are assigned according to priority level, with OFF having the highest value and ALL the lowest value.
Logging is controlled from a configuration file named EPiServerlog.config and should be placed in the same directory as the application’s web.config file. The reason why the logging configuration is separated from web.config is that if you want to enable logging when the application has entered a bad state, you have to change and save the configuration file. If the information is in web.config, the web application would be restarted when you save web.config, possibly clearing the cause for the problem that you wanted to log. Keeping the log configuration separate from web.config eliminates this problem.
A typical log configuration file can look as follows:
<log4net>
<appender name="ErrorAppender" type="log4net.Appender.FileAppender" >
<file value="c:\\EPiServerLog\\1\\Monitor\\Errorlog-file.txt" />
<appendToFile value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%d [%t] %l - %m%n" />
</layout>
</appender>
<appender name="StatisticsAppender" type="log4net.Appender.RollingFileAppender">
<file value="C:\\EPiServerLog\\1\\Statistics<a
href="fileEPiServerStatistics.log">\\EPiServerStatistics.log</a>" />
<appendToFile value="true" />
<rollingStyle value="Date" />
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%d|%m%n" />
</layout>
</appender>
<logger name="EPiServer.Diagnostics.StatisticsLog">
<level value="INFO" />
<appender-ref ref="StatisticsAppender" />
</logger>
<root>
<level value="WARN" />
<appender-ref ref="ErrorAppender" />
</root>
</log4net>
You have the following ways to disable active logging:
The site information is primarily concerned with logging various problems and unusual events. Basically you should always monitor events with log level WARN and above. Events with lower levels are primarily intended to get information to track down specific errors and/or bugs. A developer might want to enable full logging to a RollingFileAppender (see the log4net documentation) in his development environment to be able to check what has happened in EPiServer CMS in case a specific problem occurs but during regular production use, you would probably want to just monitor WARN events and higher.
Exceptions will be logged with the complete stack trace to enable you to track down exception errors. Be aware that exceptions are expensive in terms of performance. Avoid writing code that generates exceptions as part of the normal program flow.
For a production site, it is essential to have a policy regarding log files to avoid problems such as exposing log files on your website, filling up a system partition with log data etc. The EPiServer CMS logging functions are intended to monitor the health of your web application and should under normal operation not cause excessive logging, as long as you do not enable logging of events below the WARN level. The following are our recommendations on how to store log files. Note that if you are using remoting, UDP appenders or any type of appender that does not write log files to the local drives, the actual storage of log data will probably not happen on the web server, although other restrictions may apply.
Store log files in the following structure (the illustration assumes that E: is designated as the log storage partition):
E:\EPiServerLog\ | The root folder for EPiServer logs. |
1 | Gives each EPiServer application its unique folder. |
Monitor | A Monitor folder used to log warnings and errors, in other words health monitoring logs. |
Statistics | A Statistics folder that should be used if you choose to enable EPiServer’s statistics logging. |
The following keys will be added to the Mapped Diagnostic Context (MDC in log4net terms) when possible:
Key name | Description |
---|---|
PageReference | String representation of the current pages page link. Usually the last value set by PageBase.CurrentPageLink |
DataFactoryPage | String representation of the page reference passed in to a DataFactory method. |
UnifiedFileSystemPath | The path affected by a log event from EPiServer.FileSystem namespace |
Last updated: Mar 25, 2013