diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-11-21 17:15:49 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-11-21 17:16:35 +0100 |
commit | 43e2b5010ba564bb545fb2aafd33abe5eb39c31c (patch) | |
tree | 94612d771940dfc458f2385191e00e24fc3078b4 /src | |
parent | 34b66be73c930529f71e13834131c022f14a5d5a (diff) | |
download | justbuild-43e2b5010ba564bb545fb2aafd33abe5eb39c31c.tar.gz |
AnalyseAndBuild: properly pass the logger
... also to the ToResult method of the result map.
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/computed_roots/analyse_and_build.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/computed_roots/analyse_and_build.cpp b/src/buildtool/computed_roots/analyse_and_build.cpp index 6fc4e24e..fb2a8da0 100644 --- a/src/buildtool/computed_roots/analyse_and_build.cpp +++ b/src/buildtool/computed_roots/analyse_and_build.cpp @@ -49,7 +49,7 @@ ReadOutputArtifacts(analysis_result->target); auto const [actions, blobs, trees] = analysis_result->result_map.ToResult( - analyse_context->statistics, analyse_context->progress); + analyse_context->statistics, analyse_context->progress, logger); auto const cache_targets = analysis_result->result_map.CacheTargets(); auto build_result = |