From 4fcc6ab64c96c587a69c692a2cc52c3727938993 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 20 Jul 2021 17:29:42 +0300 Subject: Remove redundant 'info:' prefix in cfg-create and cfg-link output --- bpkg/cfg-create.cxx | 10 +++++----- bpkg/cfg-link.cxx | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'bpkg') diff --git a/bpkg/cfg-create.cxx b/bpkg/cfg-create.cxx index 1757e9c..61d1ef8 100644 --- a/bpkg/cfg-create.cxx +++ b/bpkg/cfg-create.cxx @@ -284,15 +284,15 @@ namespace bpkg diag_record dr (text); if (o.existing ()) - dr << "initialized existing configuration in " << c; + dr << "initialized existing configuration in " << c << '\n'; else - dr << "created new configuration in " << c; + dr << "created new configuration in " << c << '\n'; - dr << info << "uuid: " << cf->uuid - << info << "type: " << cf->type; + dr << " uuid: " << cf->uuid << '\n' + << " type: " << cf->type; if (cf->name) - dr << info << "name: " << *cf->name; + dr << "\n name: " << *cf->name; } return 0; 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; -- cgit v1.1