I have multiple python threads printing output to a command line window. Each process writes logging messages to the command line window. Depending on the timing of the print operations, it sometimes happens that two lines (from different processes) are printed on a single line:
time1:Output_process_1time2:Output_process_2
Is there any way of guaranteeing every line is printed on a different line in the command window, as such
Time1:Output_process_1
Time2:Output_process_2
I've played around with adding breakline characters. But this only makes empty lines appear.