I also want to write HTTP 400 errors into a file (...
# announcements
b
I also want to write HTTP 400 errors into a file (buffered writer) so I guess I need a mutex
c
you could also write it to a concurrent queue and then write to the file from there. or theres a more coroutine way to do it
d
have a bunch of coroutines write to a channel, and then buffered writer to read from the channel?
and run couroutines in a runBlocking block if you want to block until all http calls are complete