aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-unpack.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/pkg-unpack.cxx
parent5e761f5bee6f0bec9b4554821509bfaa6381d1c8 (diff)
Rename level[1-6]() to l[1-6]()
Diffstat (limited to 'bpkg/pkg-unpack.cxx')
-rw-r--r--bpkg/pkg-unpack.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bpkg/pkg-unpack.cxx b/bpkg/pkg-unpack.cxx
index e3cc499..8eedb1c 100644
--- a/bpkg/pkg-unpack.cxx
+++ b/bpkg/pkg-unpack.cxx
@@ -39,7 +39,7 @@ namespace bpkg
// Verify the directory is a package and get its manifest.
//
package_manifest m (pkg_verify (d, true));
- level4 ([&]{trace << d << ": " << m.name << " " << m.version;});
+ l4 ([&]{trace << d << ": " << m.name << " " << m.version;});
// Make the package and configuration paths absolute and normalized.
// If the package is inside the configuration, use the relative path.
@@ -132,7 +132,7 @@ namespace bpkg
fail << "package " << name << " is " << p->state <<
info << "expected it to be fetched";
- level4 ([&]{trace << p->name << " " << p->version;});
+ l4 ([&]{trace << p->name << " " << p->version;});
assert (p->archive); // Should have archive in the fetched state.
@@ -141,7 +141,7 @@ namespace bpkg
//
path a (p->archive->absolute () ? *p->archive : c / *p->archive);
- level4 ([&]{trace << "archive: " << a;});
+ l4 ([&]{trace << "archive: " << a;});
// Extract the package directory. Currently we always extract it
// into the configuration directory. But once we support package
@@ -222,7 +222,7 @@ namespace bpkg
fail << "--replace|-r can only be specified with --existing|-e";
const dir_path& c (o.directory ());
- level4 ([&]{trace << "configuration: " << c;});
+ l4 ([&]{trace << "configuration: " << c;});
database db (open (c, trace));
transaction t (db.begin ());