Selaa lähdekoodia

Log when using cached wheel

Thomas Kluyver 8 vuotta sitten
vanhempi
säilyke
0289a42544
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      nsist/pypi.py

+ 2 - 0
nsist/pypi.py

@@ -91,6 +91,8 @@ class WheelDownloader(object):
                                    for p in release_dir.iterdir())
         if rel is None:
             return None
+
+        logger.info('Using cached wheel: %s', rel.filename)
         return release_dir / rel.filename
 
     def fetch(self):