Extended logger character limit

This commit is contained in:
netbenixcn 2020-06-03 09:25:45 +02:00
parent a8e987f479
commit 59846c52f7
2 changed files with 2 additions and 2 deletions

View file

@ -2,5 +2,5 @@
#define _LOGGER_H_
//Allows the user to log something
void logger(char message[255]);
void logger(char message[512]);
#endif