This commit is contained in:
J. Nick Koston 2025-07-07 09:03:52 -05:00
parent 4c64511a15
commit e5415abf20
No known key found for this signature in database

View File

@ -288,7 +288,7 @@ void WebServer::setup() {
logger::global_logger->add_on_log_callback( logger::global_logger->add_on_log_callback(
// logs are not deferred, the memory overhead would be too large // logs are not deferred, the memory overhead would be too large
[this](int level, const char *tag, const char *message, size_t message_len) { [this](int level, const char *tag, const char *message, size_t message_len) {
(void)message_len; (void) message_len;
this->events_.try_send_nodefer(message, "log", millis()); this->events_.try_send_nodefer(message, "log", millis());
}); });
} }