| 527 | } |
| 528 | |
| 529 | void UpdateHTTPServerLogging(bool enable) { |
| 530 | if (enable) { |
| 531 | event_enable_debug_logging(EVENT_DBG_ALL); |
| 532 | } else { |
| 533 | event_enable_debug_logging(EVENT_DBG_NONE); |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | static std::thread g_thread_http; |
| 538 | static std::vector<std::thread> g_thread_http_workers; |
no outgoing calls
no test coverage detected