mscipio / mscipio.github.io

0 stars 0 forks source link

post/improving-logging-with-racket/ #17

Open utterances-bot opened 7 months ago

utterances-bot commented 7 months ago

Improving Logging With Racket // Grinning Cat

Logging for a long running process

https://www.grinning-cat.com/post/improving-logging-with-racket/

t0mpr1c3 commented 7 months ago

(log-message agent-logger 'info "hello" #f) (sleep 1) (thread-send log-thread 'time-to-stop) (log-message agent-logger 'info "goodbye" #f) ; hangs without this (thread-wait log-thread)