Skip to content
mikeschaekermann edited this page Nov 18, 2012 · 7 revisions

Simple and thread safe logging class.

1. Instruction

First of all you have to call the configure(string) function once in the program and thus set the file name. In each file that you want to use logging in you have to include Config.h. For easy usage, the following defines were introduced:

  1. LOG_INFO(message);
  2. LOG_WARNING(message);
  3. LOG_ERROR(message);

message can have one of the following types:

  1. string

2. Known issues

None so far.

Clone this wiki locally