diff options
author | Jack Lloyd <[email protected]> | 2018-03-02 12:12:41 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-03-02 12:14:12 -0500 |
commit | c319fc1e211d648b69f31a24557206e0852694bf (patch) | |
tree | ce05734f0fb6b9c1cae898cc6d72c67c283b118a /configure.py | |
parent | 67fc17e01bbafe0d759d32a9ffcc7cd7adc07dcf (diff) |
Log autodetected platform information at info level
This is useful when debugging problems from build logs like
https://buildd.debian.org/status/package.php?p=botan&suite=sid
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.py b/configure.py index 87cca54ce..db46d5b78 100755 --- a/configure.py +++ b/configure.py @@ -2996,9 +2996,10 @@ def main(argv): for policy in info_module_policies.values(): policy.cross_check(info_modules) - logging.info('%s invoked with options "%s"' % (argv[0], ' '.join(argv[1:]))) - logging.debug('Platform running configuration (autodetected): OS="%s" machine="%s" proc="%s"' % ( - platform.system(), platform.machine(), platform.processor())) + logging.info('%s invoked with options "%s"', argv[0], ' '.join(argv[1:])) + + logging.info('Autodetected platform information: OS="%s" machine="%s" proc="%s"', + platform.system(), platform.machine(), platform.processor()) logging.debug('Known CPU names: ' + ' '.join( sorted(flatten([[ainfo.basename] + ainfo.aliases for ainfo in info_arch.values()])))) |