WHY2/src/logger/lib/logger.c

10 lines
151 B
C
Raw Normal View History

#include <why2/logger/logger.h>
#include <stdio.h>
int initLogger(char *directoryPath)
{
printf("PATH is: %s\n", directoryPath);
return 0;
}