Details
Description
Our current libevent integration calls event_enable_debug_mode() which enables additional tracking in libevent to check for common errors. It is recommended to "only enable debug mode when actually debugging your program" because "tracking which events are initialized requires that Libevent use extra memory and CPU".
http://www.wangafu.net/~nickm/libevent-book/Ref1_libsetup.html
We could consider introducing libevent flags in order to be able to toggle this behavior with an environment variable since it appears that libevent does not provide one. However, since I don't believe these assertions have been of value, we can just remove the debug mode for now.