This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kenahoo
Recipients chris.jerdonek, kenahoo
Date 2022-01-07.00:06:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641513985.43.0.446558144646.issue29985@roundup.psfhosted.org>
In-reply-to
Content
I poked around a bit more, and it looks like a fair number of the installation messages are coming from `Lib/distutils/command/build_scripts.py`, which is using `distutils.log` to show what it's doing:

      log.debug("not copying %s (up-to-date)", script)
...
      log.info("copying and adjusting %s -> %s", script,
               self.build_dir)
...
      log.info("changing mode of %s", file)
...
      log.info("changing mode of %s from %o to %o",
               file, oldmode, newmode)

What I don't see is a way to change the log level, but if that were possible then I assume that's how `--quiet` could be achieved here.
History
Date User Action Args
2022-01-07 00:06:25kenahoosetrecipients: + kenahoo, chris.jerdonek
2022-01-07 00:06:25kenahoosetmessageid: <1641513985.43.0.446558144646.issue29985@roundup.psfhosted.org>
2022-01-07 00:06:25kenahoolinkissue29985 messages
2022-01-07 00:06:25kenahoocreate