summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/executor/executor.hpp
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2025-04-08 10:52:56 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2025-04-08 13:01:16 +0200
commit2ddbd38e3460d445fca51dc674621bb948d9557a (patch)
tree549be947e2e52c9bbc0f3fb1e30f89dfa7cb6493 /src/buildtool/execution_engine/executor/executor.hpp
parent8b90d5333cfc2f39b4ecd9181a876fefc4ab5508 (diff)
downloadjustbuild-2ddbd38e3460d445fca51dc674621bb948d9557a.tar.gz
Improve reporting on tree errors
- break lines at logicial point, following the layout of our other error messages - fix a typo - properly quote the path of the conflict
Diffstat (limited to 'src/buildtool/execution_engine/executor/executor.hpp')
-rw-r--r--src/buildtool/execution_engine/executor/executor.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp
index d274655a..7d3d004d 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -111,7 +111,7 @@ class ExecutorImpl {
action->Content().IsOverlayDisjoint());
if (not computed_overlay) {
logger.Emit(LogLevel::Error,
- "Tree-overlay computation failed: {}",
+ "Tree-overlay computation failed:\n{}",
computed_overlay.error());
return nullptr;
}