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.c File Reference

Source file that contains the implementation for logging to the console. More...

#include "Logger.h"
Include dependency graph for Logger.c:

Functions

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

Detailed Description

Source file that contains the implementation for logging to the console.

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

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)