aboutsummaryrefslogtreecommitdiff
path: root/bpkg/cfg-link.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-07-20 17:29:42 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-07-20 17:30:05 +0300
commit4fcc6ab64c96c587a69c692a2cc52c3727938993 (patch)
treec7c84d06410917b14b227f306cc3729e7eaa3724 /bpkg/cfg-link.cxx
parentd4c243bde6d3043b6e04adf249f13e8275ddd528 (diff)
Remove redundant 'info:' prefix in cfg-create and cfg-link output
Diffstat (limited to 'bpkg/cfg-link.cxx')
-rw-r--r--bpkg/cfg-link.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/bpkg/cfg-link.cxx b/bpkg/cfg-link.cxx
index 2b3f52c..5cbeef7 100644
--- a/bpkg/cfg-link.cxx
+++ b/bpkg/cfg-link.cxx
@@ -302,14 +302,14 @@ namespace bpkg
{
diag_record dr (text);
- dr << "linked configuration " << ld <<
- info << "uuid: " << lc->uuid <<
- info << "type: " << lc->type;
+ dr << "linked with configuration " << ld << '\n'
+ << " uuid: " << lc->uuid << '\n'
+ << " type: " << lc->type << '\n';
if (lc->name)
- dr << info << "name: " << *lc->name;
+ dr << " name: " << *lc->name << '\n';
- dr << info << "id: " << *lc->id;
+ dr << " id: " << *lc->id;
}
return 0;