made initLogger return logFile

This commit is contained in:
Václav Šmejkal 2022-12-04 19:05:28 +01:00
parent ca80df8c11
commit 1e7868ead1
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

@ -19,7 +19,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#ifndef WHY2_LOGGER_LOGGER_H
#define WHY2_LOGGER_LOGGER_H
int initLogger(char *directoryPath); //CREATES LOGGING FILE IN directoryPath
#include <why2/logger/flags.h>
logFile initLogger(char *directoryPath); //CREATES LOGGING FILE IN directoryPath
void writeLog(int loggerFile, char *logMessage); //WRITES logMessage TO loggerFile
#endif