Fixed #6413: fixed log level in distutils.dist.announce
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index f4aecb4..7c29bf6 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -914,8 +914,8 @@
 
     # -- Methods that operate on the Distribution ----------------------
 
-    def announce(self, msg, level=1):
-        log.debug(msg)
+    def announce(self, msg, level=log.INFO):
+        log.log(level, msg)
 
     def run_commands(self):
         """Run each command that was seen on the setup script command line.