envconfig: use debug for "using * from environment variables messages

These are spammy, and being in the debug log is probably better anyway.
pull/8014/head
Dylan Baker 4 years ago
parent cef406b3a5
commit 954219f39e
  1. 2
      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,

Loading…
Cancel
Save