asenchi / scrolls

Simple logging
MIT License
158 stars 26 forks source link

fix puts race condition #64

Closed csquared closed 8 years ago

csquared commented 10 years ago

in Ruby, puts *args is basically calling print *args, "\n", which means there is a race condition when printing output in a concurrent process.

amacneil commented 9 years ago

:+1: