| 484 | } |
| 485 | |
| 486 | int |
| 487 | LogObject::log(LogAccess *lad, const char *text_entry) |
| 488 | { |
| 489 | // Clang doesn't like initializing a view with nullptr, have to check. |
| 490 | return this->log(lad, std::string_view{text_entry ? text_entry : ""}); |
| 491 | } |
| 492 | |
| 493 | class ThreadLocalLogBufferManager : public Continuation |
| 494 | { |
no test coverage detected