aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-configure.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-configure.cxx
parent5e761f5bee6f0bec9b4554821509bfaa6381d1c8 (diff)
Rename level[1-6]() to l[1-6]()
Diffstat (limited to 'bpkg/pkg-configure.cxx')
-rw-r--r--bpkg/pkg-configure.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/bpkg/pkg-configure.cxx b/bpkg/pkg-configure.cxx
index 8a4fd5f..4206992 100644
--- a/bpkg/pkg-configure.cxx
+++ b/bpkg/pkg-configure.cxx
@@ -40,8 +40,8 @@ namespace bpkg
: c / *p->src_root);
dir_path out_root (c / dir_path (p->name + "-" + p->version.string ()));
- level4 ([&]{trace << "src_root: " << src_root << ", "
- << "out_root: " << out_root;});
+ l4 ([&]{trace << "src_root: " << src_root << ", "
+ << "out_root: " << out_root;});
// Verify all our prerequisites are configured and populate the
// prerequisites list.
@@ -110,7 +110,7 @@ namespace bpkg
src_root.string () + "/@" +
out_root.string () + "/)";
- level4 ([&]{trace << "buildspec: " << bspec;});
+ l4 ([&]{trace << "buildspec: " << bspec;});
// Configure.
//
@@ -149,7 +149,7 @@ namespace bpkg
tracer trace ("pkg_configure");
const dir_path& c (o.directory ());
- level4 ([&]{trace << "configuration: " << c;});
+ l4 ([&]{trace << "configuration: " << c;});
// Sort arguments into the package name and configuration variables.
//
@@ -185,7 +185,7 @@ namespace bpkg
fail << "package " << n << " is " << p->state <<
info << "expected it to be unpacked";
- level4 ([&]{trace << p->name << " " << p->version;});
+ l4 ([&]{trace << p->name << " " << p->version;});
pkg_configure (c, o, t, p, vars); // Commits the transaction.