2022-11-18 17:27:47 +01:00
|
|
|
#include <why2/logger/logger.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2022-11-18 18:32:28 +01:00
|
|
|
int initLogger(char *directoryPath)
|
2022-11-18 17:27:47 +01:00
|
|
|
{
|
2022-11-18 18:32:28 +01:00
|
|
|
printf("PATH is: %s\n", directoryPath);
|
2022-11-18 17:27:47 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|