change download log verbose

This commit is contained in:
Dun Liang 2020-03-22 14:10:43 +08:00
parent bf3680cc0b
commit dcb530119d
1 changed files with 2 additions and 2 deletions

View File

@ -134,9 +134,9 @@ def download(url, filename):
if os.path.isfile(filename):
if os.path.getsize(filename) > 100:
return
LOG.i("Downloading", url)
LOG.v("Downloading", url)
urllib.request.urlretrieve(url, filename)
LOG.i("Download finished")
LOG.v("Download finished")
def find_cache_path():
from pathlib import Path