UI Deploy

Curated, Short, Web UI Dev we Love.

Python logging from multiple processes

Had a rough day today. I just wanted a log. Not just any log mind you, but one that could handle writes from multiple processes running at the same time. A naive me would have put python’s basic log handler within each process and then watch as each of the processes crash and burn because of conflicting disk write access.

view source

Advertisement