Hacker News new | ask | show | jobs
by jamesaguilar 4280 days ago
IMO the real issue is that a competent logging framework doesn't block app code to sync the log to disk. The buffer should be swapped out under lock, and then synced in a separate thread. Yuck.
1 comments

The downside is of course that if you crash hard, the most valuable log entries are the ones least likely to be on-disk afterwards.
Which is why logging to disk on the server is BAD, have your log framework write to stdout and have upstart/systemd/whatever handle writing to a remote syslog server or whatever your fancy is.