aboutsummaryrefslogtreecommitdiff
path: root/bpkg/cfg-create.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/cfg-create.cxx')
-rw-r--r--bpkg/cfg-create.cxx10
1 files changed, 5 insertions, 5 deletions
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;