diff --git a/include/logger/logger.h b/include/logger/logger.h index 8050feb..e538f89 100644 --- a/include/logger/logger.h +++ b/include/logger/logger.h @@ -1,6 +1,6 @@ #ifndef WHY2_LOGGER_LOGGER_H #define WHY2_LOGGER_LOGGER_H -int initLogger(char *path); +int initLogger(char *directoryPath); #endif \ No newline at end of file diff --git a/src/logger/lib/logger.c b/src/logger/lib/logger.c index 47476a4..f6d4607 100644 --- a/src/logger/lib/logger.c +++ b/src/logger/lib/logger.c @@ -2,9 +2,9 @@ #include -int initLogger(char *path) +int initLogger(char *directoryPath) { - printf("PATH is: %s\n", path); + printf("PATH is: %s\n", directoryPath); return 0; } \ No newline at end of file