added comments to logger-test

This commit is contained in:
Václav Šmejkal 2022-11-22 18:57:06 +01:00
parent 28a38e5290
commit 3c17674cdb
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

@ -4,12 +4,14 @@
int main(void) int main(void)
{ {
int test = initLogger(WRITE_DIR); //VARIABLES
int test = initLogger(WRITE_DIR); //INITIALIZE LOGGER FILE
printf("%d\n", test); printf("%d\n", test);
writeLog(test, WRITE_MESSAGE); writeLog(test, WRITE_MESSAGE); //WRITE
//DEALLOCATION
deallocateLogger(test); deallocateLogger(test);
return 0; return 0;
} }