WHY2/include/logger/logger.h

7 lines
226 B
C
Raw Normal View History

2022-11-18 16:10:54 +01:00
#ifndef WHY2_LOGGER_LOGGER_H
#define WHY2_LOGGER_LOGGER_H
2022-11-22 18:21:20 +01:00
int initLogger(char *directoryPath); //CREATES LOGGING FILE IN directoryPath
2022-11-22 18:23:25 +01:00
void writeLog(int loggerFile, char *logMessage); //WRITES logMessage TO loggerFile
2022-11-18 16:10:54 +01:00
#endif