diff options
author | Brad King <brad.king@kitware.com> | 2023-01-30 15:37:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-02-01 14:32:42 (GMT) |
commit | 0a48d8fe5ccf8a44bcada7b528f4cf4dd591b18e (patch) | |
tree | 70ea637df099d555b01e8e73c9935563d0ea5c22 /Source/cmTryRunCommand.cxx | |
parent | e86bebfd146c07d3a5eb34f9f35e133b6c3b805c (diff) | |
download | CMake-0a48d8fe5ccf8a44bcada7b528f4cf4dd591b18e.zip CMake-0a48d8fe5ccf8a44bcada7b528f4cf4dd591b18e.tar.gz CMake-0a48d8fe5ccf8a44bcada7b528f4cf4dd591b18e.tar.bz2 |
ConfigureLog: De-duplicate event backtrace and check key generation
All event kinds have these fields, so centralize their implementation.
Diffstat (limited to 'Source/cmTryRunCommand.cxx')
-rw-r--r-- | Source/cmTryRunCommand.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmTryRunCommand.cxx b/Source/cmTryRunCommand.cxx index 21bd95a..b648d9b 100644 --- a/Source/cmTryRunCommand.cxx +++ b/Source/cmTryRunCommand.cxx @@ -44,9 +44,7 @@ void WriteTryRunEvent(cmConfigureLog& log, cmMakefile const& mf, static const std::vector<unsigned long> LogVersionsWithTryRunV1{ 1 }; if (log.IsAnyLogVersionEnabled(LogVersionsWithTryRunV1)) { - log.BeginEvent("try_run-v1"); - log.WriteBacktrace(mf); - log.WriteChecks(mf); + log.BeginEvent("try_run-v1", mf); cmCoreTryCompile::WriteTryCompileEventFields(log, compileResult); log.BeginObject("runResult"_s); |