| 213 | } |
| 214 | |
| 215 | void cmMakefile::IssueMessage(MessageType t, std::string const& text) const |
| 216 | { |
| 217 | if (!this->ExecutionStatusStack.empty()) { |
| 218 | if ((t == MessageType::FATAL_ERROR) || |
| 219 | (t == MessageType::INTERNAL_ERROR)) { |
| 220 | this->ExecutionStatusStack.back()->SetNestedError(); |
| 221 | } |
| 222 | } |
| 223 | this->GetCMakeInstance()->IssueMessage(t, text, this->Backtrace); |
| 224 | } |
| 225 | |
| 226 | Message::LogLevel cmMakefile::GetCurrentLogLevel() const |
| 227 | { |
no test coverage detected