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

.NET File Logging Library

By , 17 Apr 2008
 

Introduction

This is a simple yet useful file based logging library along with a sample client application demonstrating the usage of the library.

Background

Following are some of the features of this library.

  • Allows logging messages by severity levels. Library currently supports 3 severity levels like Error, Warning and Information.
  • Provides wrap around feature to wrap log files when maximum configured size is reached.
  • Library provides feature to recover from exceptions. It basically attempts once to close the current log file and re-open a new one.
  • Library is thread safe.

This library is more like a starter kit with all the base functions in place. Please feel free to customize it for your needs.

Using the code

Library usage is very simple. The object has to be initialized first using the Initialize method. This is where the log file name and location has to be specified. Optionally, the maximum log file size can be specified as well. The default maximum log file size is 20 MB. Log file will truncate automatically when the configured maximum size is reached.

CLogger TestLogger = new CLogger();
TestLogger.Initialize("C:", "Test.Log"); // Location and file name
// TestLogger.Initialize("C:", "Test.Log", 20); // Optional max log size param in MB 

Start logging information right away. Each severity level has 3 overloads.

  • Overload for logging message strings
  • Overload for logging error codes and message strings
  • Overload for logging class name, method name and message strings
TestLogger.LogInformation("My First Test Log Message");
TestLogger.LogWarning("My First Test Log Message");
TestLogger.LogError("My First Test Log Message");
TestLogger.LogInformation(1005, "My First Test Log Message");
TestLogger.LogInformation("LogClient", "TestLog", "My First Test Log Message");
         

Finally, this is how the logged statements look like.

[4/5/2008 1:36:29 AM],[1],[Information],LogClient:TestLog:My First Test Log Message
[4/5/2008 1:36:29 AM],[1],[Warning],LogClient:TestLog:My First Test Log Message
[4/5/2008 1:36:29 AM],[1],[Error],LogClient:TestLog:My First Test Log Message

Each statement has the date time stamp, thread id, severity and the message string.

Terminate the logger library using the Terminate statement.

TestLogger.Terminate();  

Happy logging. As always, happy to hear any suggestions and criticisms.

History

Library Version 1.0 - April 05, 2008

License

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

About the Author

msvcyc
United States United States
Member
No Biography provided

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   
QuestionHi Performance LoggingmemberShaneNorman8 May '08 - 21:09 
AnswerRe: Hi Performance Loggingmembermsvenc9 May '08 - 7:17 
QuestionRe: Hi Performance LoggingmemberShane Thurai9 May '08 - 13:10 
GeneralRe: Hi Performance LoggingmemberShane Thurai22 May '08 - 21:04 
QuestionCould this log work in multithread?memberzjs__200018 Apr '08 - 0:03 
AnswerRe: Could this log work in multithread?memberzjs__200018 Apr '08 - 0:06 
GeneralRe: Could this log work in multithread?membermsvenc22 Apr '08 - 5:53 
QuestionWhat is RTLog Reference in LogClient and Why is it Not found?memberRonHat8 Apr '08 - 6:46 
AnswerRe: What is RTLog Reference in LogClient and Why is it Not found?memberRonHat8 Apr '08 - 8:27 
GeneralRe: What is RTLog Reference in LogClient and Why is it Not found?membermsvenc17 Apr '08 - 7:56 
QuestionComparisons to other logging libraries?memberMike Lang7 Apr '08 - 3:40 
AnswerRe: Comparisons to other logging libraries?membermsvenc7 Apr '08 - 6:56 
AnswerRe: Comparisons to other logging libraries?memberAlexander Vasilyev8 Apr '08 - 8:16 
GeneralRe: Comparisons to other logging libraries?memberJohn Camaro10 Apr '08 - 23:07 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 17 Apr 2008
Article Copyright 2008 by msvcyc
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid