-
Notifications
You must be signed in to change notification settings - Fork 1
Logger
mikeschaekermann edited this page Nov 18, 2012
·
7 revisions
Simple and thread safe logging class.
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:
- LOG_INFO(message);
- LOG_WARNING(message);
- LOG_ERROR(message);
message can have one of the following types:
- string
None so far.