Add missing implementation for event_enable_debug_logging

This commit is contained in:
Nick Mathewson 2012-08-23 11:42:04 -04:00
parent 07e132e3ad
commit 3b3e21de5a

8
log.c
View File

@ -83,6 +83,14 @@ event_debug_get_logging_mask_(void)
#endif
#endif /* EVENT_DEBUG_LOGGING_ENABLED */
void
event_enable_debug_logging(ev_uint32_t which)
{
#ifdef EVENT_DEBUG_LOGGING_ENABLED
event_debug_logging_mask_ = which;
#endif
}
void
event_set_fatal_callback(event_fatal_cb cb)
{