|
SmartFolder
1.0
SmartFolder is a way to search files on your system and group the results. The program will interpret search queries and create a folder with symbolic links to all the found matches.
|
Header file that contains the definitions for logging to the console. More...
#include <stdio.h>#include <stdarg.h>

Go to the source code of this file.
Macros | |
| #define | LOG_LEVEL 1 |
Functions | |
| void | logMessage (int level, const char *format,...) |
Header file that contains the definitions for logging to the console.
| #define LOG_LEVEL 1 |
Here you can set the desired level of logging you want in the console We will output anything over that level
| void logMessage | ( | int | level, |
| const char * | format, | ||
| ... | |||
| ) |
Function to log a message of the specified level. Levels are the following:
0 for Debug level
1 for Info level
2 for Warning level
3 for Fatal level
| level | The level of the message |
| format | String format of the message (like in printf for example) |
| ... | Variables to insert into the String formatĀ (like in printf) |