Extended logger character limit
This commit is contained in:
parent
a8e987f479
commit
59846c52f7
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
|||
#include "logger.h"
|
||||
|
||||
|
||||
void logger(char message[255]){
|
||||
void logger(char message[512]){
|
||||
FILE *log_file;
|
||||
time_t t = time(NULL);
|
||||
struct tm tm = *localtime(&t);
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
#define _LOGGER_H_
|
||||
|
||||
//Allows the user to log something
|
||||
void logger(char message[255]);
|
||||
void logger(char message[512]);
|
||||
#endif
|
||||
Reference in a new issue