Click here to Skip to main content
Licence 
First Posted 25 Jun 2002
Views 145,244
Bookmarked 68 times

A Simple LogFile

By , | 19 Mar 2003 | Article
A simple logfile to record runtime information

Introduction

Sometime we need to record something after we give the software to our customers, so when something bad happened, we can find it out without the debug environment. Sometime we want to get some trace information in the release mode of the program. In these circumstances, a logfile is useful.

There are lots of logfile code examples here at codeproject and elsewhere. This one is very simple, compared to some of the others.

The class CLogFile has only three member functions: a constructor, a destructor and a member called Write. Let's see how to use it.

The constructor needs 3 parameters:

CLogFile(LPCTSTR strFile, bool bAppend = FALSE,
                                    long lTruncate = 4096)

The first parameter is the file name. It could include the absolute path, or just a file name. In the latter case, the logfile would be created in the same directory as the executable. Nothing concerned with the "Current Directory", which always brings me trouble.

The second parameter indicate whether the log information should append to the end of the file, if the file already exists.

The third parameter indicates the truncate size. If the logfile exceeds this number, it rewinds to the beginning, and continues. The information following writes to the file from the beginning.

The second member is the destructor. It does some cleaning jobs. Nothing more to say.

The most important member is the third:

void Write(LPCTSTR pszFormat, ...)

This member writes a line to the logfile. Its usage is just the same as printf. It seems that there could be much to say about this member, but I'd prefer to keep things simple. And it is simple.

Features

  • File name could use absolute path or just the name.
  • Every log line has a time stamp attached.
  • Uses printf like format to write log lines.
  • Multithread safe.

Anything else is in the code. The thing is 108 lines of code in a .h file, including comments and blank lines.

Update by Zoltan:

My project was a 24/7 application, so one log file could be to big. So I made new log files every day which meant some months lots of files were made in each directory. Finally I made folders for every year, every month, and a log files are stored in the month folders.

Sample screenshot

I made the following function to change the current file name:

void ChangeFile(LPCTSTR strFile, bool bAppend = TRUE, long lTruncate = 4096);

These are the same params like old constructor, and when the file name is different from the stored m_filename, first close the old logger file, then open the new in the selected folder.

Using this feature

Most inportantly don't forget:

#define _DEBUG_LOG    TRUE
#include "logfile.h"

The following code shows an example how can be use this. %02i is a useful choose for month, so the 09 month will not overtake the 10 month.
For testing choose systime.wMinute to faster create new folders.

CString name;
SYSTEMTIME systime;

GetLocalTime(&systime);

name.Format("%i\\%02i\\log_%02i%02i%02i.txt",
        systime.wYear,
        systime.wMonth,
        systime.wYear,
        systime.wMonth,
        systime.wDay);
m_log.ChangeFile(name);

Features

  • File name could use absolute path or just the name. (original by Yao)
  • File name could be in a new folder, and a logger will create it.

Revision History

  • 26 Jun 2002 - Initial Revision
  • 20 Mar 2003 - updated by Zoltan

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Authors

Neil Yao



China China

Member

I'm a chinese programer living in Shanghai, currently working for a software company whose main business is to deliver computer based testing. Software simulation for computer based testing and certifications is my main responsibility in this company. Execpt for software development, I like out-door activities and photography. I am willing to make friends in China and all over the world, so contact me if you have anything in common with meSmile | :)

Zoltan

Web Developer
Visionsoft, Best Film
Hungary Hungary

Member

MCP ASP.NET Web Client Developer

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionif the log length is greater than 256, what happening? Pinmemberconfach14:24 11 Jan '10  
GeneralMultithread and static Pinmemberchristoferw4:42 26 Nov '09  
Generalplease try to upload whole application rather then header or c++ PinmemberChetan Sheladiya17:41 3 Mar '09  
GeneralChanges to avoid MFC PinmemberMyzhar23:22 9 Feb '09  
GeneralGetting Error C2352 CLogFile::Write : Illegal call of non-static member function PinmemberTimb32012:05 24 Mar '08  
GeneralRe: Getting Error C2352 CLogFile::Write : Illegal call of non-static member function PinmemberNeil Yao15:20 24 Mar '08  
GeneralRe: Getting Error C2352 CLogFile::Write : Illegal call of non-static member function PinmemberTimb3209:04 25 Mar '08  
GeneralWorking in the Heap Pinmembertriplebit10:05 12 Mar '07  
Questionwithout MFC? Pinmembercaesten1:07 22 Sep '05  
AnswerRe: without MFC? PinmemberNeil Yao14:36 22 Sep '05  
Generaljust good :) Pinmemberdhxx8:23 29 Jul '05  
QuestionWhy Write() does not work? Pinmemberyongdong6:44 22 Apr '04  
AnswerRe: Why Write() does not work? PinmemberYao Zhifeng15:02 22 Apr '04  
GeneralRe: Why Write() does not work? Pinmemberyongdong3:31 23 Apr '04  
Questionable to log events such as deleting files?? PinmemberJosiemaran18:54 31 Mar '04  
AnswerRe: able to log events such as deleting files?? PinmemberYao Zhifeng14:01 1 Apr '04  
GeneralExcellent, just a little bug in CreateDirectories method... Pinmemberguit4422:12 22 Apr '03  
GeneralRe: Excellent, just a little bug in CreateDirectories method... PinmemberZoltan22:57 22 Apr '03  
GeneralRe: Excellent, just a little bug in CreateDirectories method... Pinmemberrsaqib22:31 1 Feb '12  
General_DEBUG_LOG directive PinmemberMav Rossi21:50 20 Mar '03  
GeneralRe: _DEBUG_LOG directive PinsussAnonymous22:17 20 Mar '03  
GeneralRe: _DEBUG_LOG directive, YES! :) PinmemberZoltan22:44 20 Mar '03  
GeneralAn example PinmemberPiccinano3:48 27 Feb '03  
Generalftell is '0' PinmemberJiminy21:52 16 Sep '02  
QuestionWhy, why, why, why, why ??? PinmemberChristian Graus15:51 1 Jul '02  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 20 Mar 2003
Article Copyright 2002 by Neil Yao, Zoltan
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid