Methods look like this: ``` virtual void log*(std::uint_fast64_t poolId) const noexcept override { SpinGuard guard{lock}; std::cerr << stringify("Pool [", poolId, "]: *") << std::flush; } ``` But `operator<<` is not `noexcept`.
Methods look like this:
But
operator<<is notnoexcept.