diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-07-08 21:02:47 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-07-08 21:02:47 +0300 |
commit | c3292f4dc1da02ebc0524e525f0ddb79a5d46332 (patch) | |
tree | ab1df1bde262d5bae848db1e0490a1d86490b60b /meson.py | |
parent | bfa9af8f13f964ab46a28e17ea593c5983afa9cb (diff) | |
download | meson-c3292f4dc1da02ebc0524e525f0ddb79a5d46332.zip meson-c3292f4dc1da02ebc0524e525f0ddb79a5d46332.tar.gz meson-c3292f4dc1da02ebc0524e525f0ddb79a5d46332.tar.bz2 |
More use of logging framework.
Diffstat (limited to 'meson.py')
-rwxr-xr-x | meson.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |