Use the rate limiting API in the BBS to add rate limiting for BBS log messages, to address bugs that result in infinite loops that will quickly fill up all available disk space. If we had a log queue and a separate logging thread, we could simply drop log messages after a certain amount in the queue, but since logging is done in each individual thread, some kind of global rate limit structure for logging would be more applicable.
You must be