Click here to Skip to main content
15,885,829 members
Articles / Programming Languages / C#

CooksMate

Rate me:
Please Sign up or sign in to vote.
3.32/5 (8 votes)
21 Jan 2008GPL32 min read 56.2K   1K   23  
A simple program to help get the timing of a roast dinner
<?xml version="1.0" encoding="utf-8" ?>
<!-- 
     .NET application configuration file

     This file must have the exact same name as your application with
     .config appended to it. For example if your application is ConsoleApp.exe
     then the config file must be ConsoleApp.exe.config it mut also be in the
     same directory as the application. 
-->
<configuration>
    <!-- Register a section handler for the log4net section -->
    <configSections>
        <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
    </configSections>
    <!-- Enable internal debugging in log4net -->
    <appSettings>
        <!-- To enable internal log4net logging specify the following appSettings key -->
        <!-- <add key="log4net.Internal.Debug" value="true"/> -->
    </appSettings>
    <!-- This section contains the log4net configuration settings -->
    <log4net>
        <!-- Define some output appenders -->
        <appender name="LogFileAppender" type="log4net.Appender.FileAppender">
            <file value="cooksmate.log" />
            <!-- Example using environment variables in params -->
            <!-- <file value="${TMP}\log-file.txt" /> -->
            <appendToFile value="false" />
            <!-- An alternate output encoding can be specified -->
            <!-- <param name="Encoding" value="unicodeFFFE" /> -->
            <layout type="log4net.Layout.PatternLayout">
                <header value="[CooksMate Application Started]&#13;&#10;" />
                <footer value="[CooksMate Application Finished]&#13;&#10;" />
                <conversionPattern value="%date [%thread] %-5level %logger [%ndc] &lt;%property{auth}&gt; - %message%newline" />
            </layout>
            <!-- Alternate layout using XML
            <layout type="log4net.Layout.XMLLayout" /> 
            -->
        </appender>
        <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
            <layout type="log4net.Layout.PatternLayout">
                <conversionPattern value="%date [%thread] %-5level %logger [%ndc] &lt;%property{auth}&gt; - %message%newline" />
            </layout>
        </appender>
        <!-- Setup the root category, add the appenders and set the default level -->
        <root>
            <level value="DEBUG" />
            <appender-ref ref="LogFileAppender" />
            <!-- appender-ref ref="ConsoleAppender" / -->
        </root>
    </log4net>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Airbus Defense and Space
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions