Click here to Skip to main content
6,594,932 members and growing! (14,898 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » Utilities     Beginner License: The Code Project Open License (CPOL)

.NET File Logging Library

By msvcyc

A simple yet useful library for file based logging implemented in .NET using C#
C#, Windows, .NET, Win32, Win64, Visual Studio, Architect, Dev, Design
Posted:4 Apr 2008
Updated:17 Apr 2008
Views:11,640
Bookmarked:10 times
Unedited contribution
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
4 votes for this article.
Popularity: 1.08 Rating: 1.80 out of 5
2 votes, 50.0%
1
1 vote, 25.0%
2

3
1 vote, 25.0%
4

5

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


Member

Location: United States United States

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 14 of 14 (Total in Forum: 14) (Refresh)FirstPrevNext
QuestionHi Performance Logging PinmemberShaneNorman22:09 8 May '08  
AnswerRe: Hi Performance Logging Pinmembermsvenc8:17 9 May '08  
QuestionRe: Hi Performance Logging PinmemberShane Thurai14:10 9 May '08  
GeneralRe: Hi Performance Logging PinmemberShane Thurai22:04 22 May '08  
GeneralCould this log work in multithread? Pinmemberzjs__20001:03 18 Apr '08  
GeneralRe: Could this log work in multithread? Pinmemberzjs__20001:06 18 Apr '08  
GeneralRe: Could this log work in multithread? Pinmembermsvenc6:53 22 Apr '08  
QuestionWhat is RTLog Reference in LogClient and Why is it Not found? PinmemberRonHat7:46 8 Apr '08  
AnswerRe: What is RTLog Reference in LogClient and Why is it Not found? PinmemberRonHat9:27 8 Apr '08  
GeneralRe: What is RTLog Reference in LogClient and Why is it Not found? Pinmembermsvenc8:56 17 Apr '08  
GeneralComparisons to other logging libraries? PinmemberMike Lang4:40 7 Apr '08  
GeneralRe: Comparisons to other logging libraries? Pinmembermsvenc7:56 7 Apr '08  
AnswerRe: Comparisons to other logging libraries? PinmemberAlexander Vasilyev9:16 8 Apr '08  
GeneralRe: Comparisons to other logging libraries? PinmemberJohn Camaro0:07 11 Apr '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 17 Apr 2008
Editor:
Copyright 2008 by msvcyc
Everything else Copyright © CodeProject, 1999-2009
Web19 | Advertise on the Code Project