aboutsummaryrefslogtreecommitdiff
path: root/bpkg/cfg-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/cfg-create.cxx
parent5e761f5bee6f0bec9b4554821509bfaa6381d1c8 (diff)
Rename level[1-6]() to l[1-6]()
Diffstat (limited to 'bpkg/cfg-create.cxx')
-rw-r--r--bpkg/cfg-create.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bpkg/cfg-create.cxx b/bpkg/cfg-create.cxx
index 760c644..0215e5d 100644
--- a/bpkg/cfg-create.cxx
+++ b/bpkg/cfg-create.cxx
@@ -25,18 +25,18 @@ namespace bpkg
fail << "--wipe requires explicit --directory|-d";
dir_path c (o.directory ());
- level4 ([&]{trace << "creating configuration in " << c;});
+ l4 ([&]{trace << "creating configuration in " << c;});
// If the directory already exists, make sure it is empty.
// Otherwise, create it.
//
if (exists (c))
{
- level5 ([&]{trace << "directory " << c << " exists";});
+ l5 ([&]{trace << "directory " << c << " exists";});
if (!empty (c))
{
- level5 ([&]{trace << "directory " << c << " not empty";});
+ l5 ([&]{trace << "directory " << c << " not empty";});
if (!o.wipe ())
fail << "directory " << c << " is not empty" <<
@@ -47,7 +47,7 @@ namespace bpkg
}
else
{
- level5 ([&]{trace << "directory " << c << " does not exist";});
+ l5 ([&]{trace << "directory " << c << " does not exist";});
mk_p (c);
}