aboutsummaryrefslogtreecommitdiff
path: root/build2/dist
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-02-29 11:21:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-02-29 11:21:46 +0200
commit6fa958ee23d0beb62f687d3d9137c774b4960197 (patch)
tree497e66e89cb6f65a24fd7e192ef8c5032974c82c /build2/dist
parent3cf3b73ffc6881d5428a735736a347f6e143b366 (diff)
Rename level[1-6]() to l[1-6]()
Diffstat (limited to 'build2/dist')
-rw-r--r--build2/dist/module.cxx4
-rw-r--r--build2/dist/operation.cxx6
2 files changed, 5 insertions, 5 deletions
diff --git a/build2/dist/module.cxx b/build2/dist/module.cxx
index c7c3a23..a205a72 100644
--- a/build2/dist/module.cxx
+++ b/build2/dist/module.cxx
@@ -27,7 +27,7 @@ namespace build2
{
tracer trace ("dist::boot");
- level5 ([&]{trace << "for " << r.out_path ();});
+ l5 ([&]{trace << "for " << r.out_path ();});
// Register meta-operation.
//
@@ -73,7 +73,7 @@ namespace build2
}
const dir_path& out_root (r.out_path ());
- level5 ([&]{trace << "for " << out_root;});
+ l5 ([&]{trace << "for " << out_root;});
// Register our wildcard rule. Do it explicitly for the alias
// to prevent something like insert<target>(dist_id, test_id)
diff --git a/build2/dist/operation.cxx b/build2/dist/operation.cxx
index fba0ab5..4105110 100644
--- a/build2/dist/operation.cxx
+++ b/build2/dist/operation.cxx
@@ -140,7 +140,7 @@ namespace build2
if (rs != t.base_scope ().root_scope ())
fail << "out of project target " << t;
- level5 ([&]{trace << diag_doing (a, t);});
+ l5 ([&]{trace << diag_doing (a, t);});
match (a, t);
}
@@ -213,7 +213,7 @@ namespace build2
auto l ((*ft)[dist_var]);
if (l && !as<bool> (*l))
- level5 ([&]{trace << "excluding " << *ft;});
+ l5 ([&]{trace << "excluding " << *ft;});
else
files.push_back (ft);
@@ -228,7 +228,7 @@ namespace build2
if (l && as<bool> (*l))
{
- level5 ([&]{trace << "including " << *ft;});
+ l5 ([&]{trace << "including " << *ft;});
files.push_back (ft);
}