aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-create.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-02-29 11:28:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-02-29 11:28:02 +0200
commit6d036eb95b33b9968e5e95e3e3e9b5a42ba99cc9 (patch)
treed78ac80d8a0a3d20c98169fe945c7764bea65847 /bpkg/rep-create.cxx
parent5e761f5bee6f0bec9b4554821509bfaa6381d1c8 (diff)
Rename level[1-6]() to l[1-6]()
Diffstat (limited to 'bpkg/rep-create.cxx')
-rw-r--r--bpkg/rep-create.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/bpkg/rep-create.cxx b/bpkg/rep-create.cxx
index 8c6d3df..c714445 100644
--- a/bpkg/rep-create.cxx
+++ b/bpkg/rep-create.cxx
@@ -69,7 +69,7 @@ namespace bpkg
//
if (p.string ().front () == '.')
{
- level4 ([&]{trace << "skipping '" << p << "' in " << d;});
+ l4 ([&]{trace << "skipping '" << p << "' in " << d;});
continue;
}
@@ -103,8 +103,8 @@ namespace bpkg
//
m.sha256sum = sha256 (o, a);
- level4 ([&]{trace << m.name << " " << m.version << " in " << a
- << " sha256sum " << *m.sha256sum;});
+ l4 ([&]{trace << m.name << " " << m.version << " in " << a
+ << " sha256sum " << *m.sha256sum;});
// Add package archive location relative to the repository root.
//
@@ -146,13 +146,13 @@ namespace bpkg
if (d.empty ())
throw invalid_path (d.string ());
- level4 ([&]{trace << "creating repository in " << d;});
+ l4 ([&]{trace << "creating repository in " << d;});
// Load the 'repositories' file to make sure it is there and
// is valid.
//
repository_manifests rms (fetch_repositories (d, o.ignore_unknown ()));
- level4 ([&]{trace << rms.size () - 1 << " prerequisite repository(s)";});
+ l4 ([&]{trace << rms.size () - 1 << " prerequisite repository(s)";});
// While we could have serialized as we go along, the order of
// packages will be pretty much random and not reproducible. By