add newline in error message

This commit is contained in:
Andre Puschmann 2017-10-12 11:50:51 +02:00
parent 83a711b125
commit 4b223ba729

View file

@ -55,7 +55,7 @@ void logger_file::init(std::string file) {
filename = file;
logfile = fopen(filename.c_str(), "w");
if(logfile==NULL) {
printf("Error: could not create log file, no messages will be logged");
printf("Error: could not create log file, no messages will be logged!\n");
}
start();
inited = true;