diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-03-08 11:20:17 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-03-09 09:16:40 +0100 |
commit | 60815ea116fc7b16d2a0ae6dba77397fa8a6fad7 (patch) | |
tree | 5599e7dc60cac5ef26212a2feed620f992a89b1a /src/other_tools/just_mr/utils.cpp | |
parent | bdbcaaf7699622568258cdeaa6885f69a6d7bfd3 (diff) | |
download | justbuild-60815ea116fc7b16d2a0ae6dba77397fa8a6fad7.tar.gz |
Just-MR: Improve logging messages
... by reporting unsupported config values explicitly and fixing
inconsistencies.
Diffstat (limited to 'src/other_tools/just_mr/utils.cpp')
-rw-r--r-- | src/other_tools/just_mr/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/just_mr/utils.cpp b/src/other_tools/just_mr/utils.cpp index f2272053..24511742 100644 --- a/src/other_tools/just_mr/utils.cpp +++ b/src/other_tools/just_mr/utils.cpp @@ -125,7 +125,7 @@ auto ResolveRepo(ExpressionPtr const& repo_desc, return ResolveRepo(repo_desc, repos, &seen); } catch (std::exception const& e) { Logger::Log(LogLevel::Error, - "Config: while resolving dependencies: {}", + "Config: While resolving dependencies: {}", e.what()); return std::nullopt; } |