Platform independent extensible log class | CodeGuru

Platform independent extensible log class

Environment: VC6, BC55, Win2000 SP2, g++, Redhat Linux 7.1 Introduction: The ability to log is commonly needed in every software project on every platform. I wrote this class to save time. There are two basic log classes provided for easy use. One is CFileLog, which implements a file logging system. The other is CRegFileLog that […]

Written By
CodeGuru Staff
CodeGuru Staff
Nov 20, 2001
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6, BC55, Win2000 SP2, g++, Redhat Linux 7.1

Introduction:

The ability to log is commonly needed in every software project on every platform. I wrote this class to save time.

There are two basic log classes provided for easy use. One is CFileLog, which implements a file logging system. The other is CRegFileLog that implements a registry controled file logging system. The whole logging system is quit easy to extended for any propose.

How to use:

Just include MjLog.h and construct an MjTools::CFileLog or MjTools::CRegFileLog instance. When you want to add a log message, call yourObject.AddLog(“Log message”).

Demo code:

#include "MjLog.h"
int main()
{
  MjTools::CFileLog m_Log("test.log");
  std::string a="aaa";
  m_Log.Clear();
  m_Log.AddLog("Abc");
  m_Log.AddLog(a);
  MjTools::CFileLog m_Log1=m_Log;
  m_Log1.AddLog("From Log1");
#ifdef WIN32 //RegistryLogControl only valid in Windows system
  // construct a registry key controled log object. If
  // the specified registry key is found,the log is enabled
  MjTools::CRegFileLog m_regLog("reglog.log",
         "HKEY_LOCAL_MACHINE\Software\YourControlKeyName");
  m_regLog.AddLog("reglog");
  m_regLog.Pause();
  m_regLog.AddLog("reglog1");
  m_regLog.Resume();
  m_regLog.AddLog("reglog2");
#endif
  return 0;
}
Advertisement

How to compile:

The source code itself can be compiled and executed. You can use command line tool to compile it.

Under VC++:

CL /D"_TEST_" MjLog.cpp 

This one may cause a link error. I don't know why.But if you use a win32 console project, no error occurs

Under BCC:

bcc32 /D_TEST_ mjlog.cpp

Under Linux:

g++ /D_TEST_ MjLog.cpp

Future Updates:

1. Make the class thread_safe.
2. Still thinking...

Downloads


Download source - 2.41 Kb
CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.