I am currently adjusting a program which reads lots of data via 2 sockets to write a log file with all read data.
The data volume is between 1 and 2 KByte per second on one socket and significantly less on the other socketbr>
The reason for the logging of all messages from both sockets is to synchronize the received data.
I am currently using Log-Dispatch-Rotate for the logging and I am a bit concerned that this program seems to flush after every line. Which other module would you recommend for logging? It should also work from multiple threads when the logging gets initialised before the child threads start.
Any help would be highly appreciated.