aboutsummaryrefslogtreecommitdiff
path: root/meson.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-07-08 21:02:47 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-07-08 21:02:47 +0300
commitc3292f4dc1da02ebc0524e525f0ddb79a5d46332 (patch)
treeab1df1bde262d5bae848db1e0490a1d86490b60b /meson.py
parentbfa9af8f13f964ab46a28e17ea593c5983afa9cb (diff)
downloadmeson-c3292f4dc1da02ebc0524e525f0ddb79a5d46332.zip
meson-c3292f4dc1da02ebc0524e525f0ddb79a5d46332.tar.gz
meson-c3292f4dc1da02ebc0524e525f0ddb79a5d46332.tar.bz2
More use of logging framework.
Diffstat (limited to 'meson.py')
-rwxr-xr-xmeson.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.py b/meson.py
index 378590a..0ea4cea 100755
--- a/meson.py
+++ b/meson.py
@@ -98,8 +98,8 @@ class MesonApp():
mlog.initialize(env.get_log_dir())
mlog.log(mlog.bold('The Meson build system'))
mlog.log(' version:', coredata.version)
- mlog.log('Source dir:', mlog.cyan(app.source_dir))
- mlog.log('Build dir:', mlog.cyan(app.build_dir))
+ mlog.log('Source dir:', mlog.bold(app.source_dir))
+ mlog.log('Build dir:', mlog.bold(app.build_dir))
b = build.Build(env)
intr = interpreter.Interpreter(b)
intr.run()