-- fixed flow init when not bound
-- tweaked stats output - no section if all counts zero
-- fixed pause/resume
+-- comment out assert that doesn't apply to alert_sf_socket
122
-- pulled thread pinning from Josh
void EventManager::add_plugin(const LogApi* api)
{
- assert(api->flags & (OUTPUT_TYPE_FLAG__ALERT | OUTPUT_TYPE_FLAG__LOG));
+ // can't assert - alert_sf_socket operates differently
+ //assert(api->flags & (OUTPUT_TYPE_FLAG__ALERT | OUTPUT_TYPE_FLAG__LOG));
s_outputs.push_back(new Output(api));
}