aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-11-19 12:00:58 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-11-21 07:55:10 -0800
commit954219f39e38f79ceed7458b3b113abb63055e7a (patch)
tree174d93f9168d86f687169cfcc57aff5f36424f3c /mesonbuild
parentcef406b3a5d502cde58cdad9fc9b978efb413327 (diff)
downloadmeson-954219f39e38f79ceed7458b3b113abb63055e7a.zip
meson-954219f39e38f79ceed7458b3b113abb63055e7a.tar.gz
meson-954219f39e38f79ceed7458b3b113abb63055e7a.tar.bz2
envconfig: use debug for "using * from environment variables messages
These are spammy, and being in the debug log is probably better anyway.
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/envconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py
index 13d0ba5..7a6a646 100644
--- a/mesonbuild/envconfig.py
+++ b/mesonbuild/envconfig.py
@@ -114,7 +114,7 @@ def get_env_var_pair(for_machine: MachineChoice,
formatted = ', '.join(['{!r}'.format(var) for var in candidates])
mlog.debug('None of {} are defined in the environment, not changing global flags.'.format(formatted))
return None
- mlog.log('Using {!r} from environment with value: {!r}'.format(var, value))
+ mlog.debug('Using {!r} from environment with value: {!r}'.format(var, value))
return var, value
def get_env_var(for_machine: MachineChoice,