diff options
Diffstat (limited to 'Source/cmConfigureLog.cxx')
-rw-r--r-- | Source/cmConfigureLog.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmConfigureLog.cxx b/Source/cmConfigureLog.cxx index 1b00b4f..1cf785a 100644 --- a/Source/cmConfigureLog.cxx +++ b/Source/cmConfigureLog.cxx @@ -136,7 +136,7 @@ void cmConfigureLog::EndObject() --this->Indent; } -void cmConfigureLog::BeginEvent(std::string const& kind) +void cmConfigureLog::BeginEvent(std::string const& kind, cmMakefile const& mf) { this->EnsureInit(); @@ -146,6 +146,8 @@ void cmConfigureLog::BeginEvent(std::string const& kind) ++this->Indent; this->WriteValue("kind"_s, kind); + this->WriteBacktrace(mf); + this->WriteChecks(mf); } void cmConfigureLog::EndEvent() |