| 121 | } |
| 122 | |
| 123 | void Status::warn() const { |
| 124 | LOG(WARNING) << toString(); |
| 125 | } |
| 126 | |
| 127 | void Status::warn(const std::string_view& message) const { |
| 128 | LOG(WARNING) << message << ": " << toString(); |
nothing calls this directly
no test coverage detected