I had some sort of issue with the submitter field from #95 pull request. And when I started to work on adding the name option field. It wasn't able to create the custom log file. Which led me back to the submitter field issue I had. I didn't check the log file in Notepad++ which exposed \r character leaked in the submitter field output. I recently realized strtok calls actually need "\r\n" instead of "\n" to work with all platforms' files to read from.
I had some sort of issue with the submitter field from #95 pull request. And when I started to work on adding the name option field. It wasn't able to create the custom log file. Which led me back to the submitter field issue I had. I didn't check the log file in Notepad++ which exposed
\r
character leaked in the submitter field output. I recently realized strtok calls actually need"\r\n"
instead of"\n"
to work with all platforms' files to read from.