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.
Logger.h File Reference

Header file that contains the definitions for logging to the console. More...

#include <stdio.h>
#include <stdarg.h>
Include dependency graph for Logger.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define LOG_LEVEL   1
 

Functions

void logMessage (int level, const char *format,...)
 

Detailed Description

Header file that contains the definitions for logging to the console.

Authors
Maxime Lovino, Thomas Ibanez
Date
January 25, 2017
Version
1.0

Macro Definition Documentation

#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

Function Documentation

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

Parameters
levelThe level of the message
formatString format of the message (like in printf for example)
...Variables to insert into the String formatĀ (like in printf)