Click here to Skip to main content
Click here to Skip to main content

Mini Drop-in Replacement for log4net

By , 4 May 2012
 

Introduction 

This is a simple 8KB drop in replacement for complex 198KB Log4net that’s a 96% size reduction. Strange that after looking on the web for a logging solution that fitted my requirements, I couldn't find one.

Background

I have been using log4net for the past 7 years and it is undoubtedly the de-facto standard for logging in the .NET Framework environment. I am also a follower of the minimalistic philosophy, and to this end, I have created a drop in replacement for log4net which is smaller and a lot less complex.

This was done mostly for the reason of size restrictions in a project, i.e., minimizing the deployment footprint of the app and also as a review exercise.

Obviously, it does not have the feature set of the original, but 99% of the time you don't need it in my experience.

What You Get

So what this mini log4net does for you is the following:

  • 200 lines of code
  • Drop-in replace log4net
  • Threaded logger: no blocking of main code to log messages
  • Write to a text files only (you can add other destinations yourself if you need it)
  • Size limit log files and roll the file names with a count number
  • Date roll log files: new file for each new day
  • Simple single method configuration: no XML configuration files
  • Ability to log method name: *performance hit

Using the Code

You can pretty much forget about any changes to your code because it will work as is.

public class someclass
{
    log4net.ILog _log = LogManager.GetLogger(typeof(someclass));

    public void Method()
    {
       _log.Debug("hello world!");
    }
}

The only changes to your code would be in the startup routine for your application where you configure the logger, this would be where you use log4net's DOMConfigurator methods and the XML configuration files.

public static void Main()
{
   LogManager.Configure(
              //where to put the logs : folders will be automatically created
              "LOGS\\log.txt", 
               500,// limit the file sizes to 500kb, 0 = no limiting
               false); // log method call names -> performance hit if enabled

}

Points of Interest

The code is pretty straightforward given it is only 200 lines long, but there is a couple of “gotchas” that I will point out here:

  • AppDomain.CurrentDomain.ProcessExit: For this function to work, you must set the thread IsBackground to True otherwise it will just ignore the process exit and continue the thread. This point took me around 4 hours and a lot of hassle to try to figure out.
  • Rolling filenames: If you look at the code for implementing the rolling functionality for file names, it’s simple and dirty but it works.
  • LOG format output: The log output format is hardcoded to my own preference but you can change it to what you like in the code.
  • Size limit: The size limitation for files is not exact but it does the job in the least lines of code and keeps the message contiguous, so you don’t have to open before and after files to see the messages.
  • Method names: If you set the showmethodnames in the Configuration function, the logger will output the method name for the function in the log file which is a great help for debugging code as it specifies the exact place of the message/error and you don’t have to do anything.

The only problem is the performance hit you get because the code does a stack trace and extracts the method name. I would not recommend using this in production code but then again if you don’t log that many messages, it doesn’t matter.

History

  • Initial release: 2010/12/07 
  • Update v1.1 : 2012/05/05
    • uses a timer instead of a thread
    • added Shutdown() for implicit closing of files
    • optimized string output

License

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

About the Author

Mehdi Gholam
Architect
United Kingdom United Kingdom
Mehdi first started programming when he was 8 on BBC+128k machine in 6512 processor language, after various hardware and software changes he eventually came across .net and c# which he has been using since v1.0.
He is formally educated as a system analyst Industrial engineer, but his programming passion continues.
 
* Mehdi is the 5th person to get 6 out of 7 Platinums on CodeProject (13th Jan'12)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberumta13-Jun-13 5:42 
QuestionCurrent Version ProblemsmemberDewey28-Jul-12 12:47 
AnswerRe: Current Version ProblemsmvpMehdi Gholam28-Jul-12 17:26 
That is embarrassing! Thanks Dewey!
Its the man, not the machine - Chuck Yeager
If at first you don't succeed... get a better publicist
If the final destination is death, then we should enjoy every second of the journey.

Questioncan minilog4net be used in such condition?memberAlenty4-Jun-12 14:21 
AnswerRe: can minilog4net be used in such condition?mvpMehdi Gholam4-Jun-12 18:56 
GeneralMy vote of 5memberHoyaSaxa9316-May-12 3:51 
GeneralRe: My vote of 5mvpMehdi Gholam4-Jun-12 18:57 
QuestionA very small improvement for performance [modified]memberwmjordan11-May-12 15:05 
AnswerRe: A very small improvement for performancemvpMehdi Gholam11-May-12 18:10 
GeneralRe: A very small improvement for performancememberwmjordan12-May-12 16:39 
QuestionWhy moving to a timer?memberDewey5-May-12 17:02 
AnswerRe: Why moving to a timer?mvpMehdi Gholam5-May-12 20:09 
GeneralRe: Why moving to a timer?memberDewey14-May-12 15:49 
QuestionNice jobmemberMike Hankey5-May-12 8:29 
AnswerRe: Nice jobmvpMehdi Gholam5-May-12 8:38 
QuestionnUnit problemmemberSohailB17-Sep-11 0:30 
AnswerRe: nUnit problemmemberMehdi Gholam17-Sep-11 0:40 
GeneralRe: nUnit problemmemberSohailB17-Sep-11 0:44 
GeneralRe: nUnit problemmemberMehdi Gholam17-Sep-11 0:48 
GeneralMy vote of 4memberSatorArepoOperaRotas18-Jul-11 22:47 
QuestionUsing in web environmentmemberSatorArepoOperaRotas18-Jul-11 22:45 
AnswerRe: Using in web environmentmemberMehdi Gholam18-Jul-11 22:55 
GeneralRe: Using in web environmentmemberSatorArepoOperaRotas19-Jul-11 0:03 
GeneralRe: Using in web environmentmemberMehdi Gholam19-Jul-11 0:14 
QuestionDatabasememberD Strauss13-Jul-11 20:48 
AnswerRe: DatabasememberMehdi Gholam13-Jul-11 20:55 
GeneralcomparisonmemberSohailB15-Dec-10 9:23 
GeneralRe: comparisonmemberMehdi Gholam15-Dec-10 21:09 
GeneralRe: comparisonmemberdave.dolan5-May-12 18:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 5 May 2012
Article Copyright 2010 by Mehdi Gholam
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid