1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-02 07:20:37 +02:00

downgrade missing ipfs_cid WARNING to DEBUG

This commit is contained in:
Izzy 2023-02-19 19:27:50 +01:00 committed by Jochen Sprickerhof
parent 10802ef00a
commit 04dc297982

View File

@ -292,7 +292,7 @@ def fill_config_defaults(thisconfig):
if 'ipfs_cid' not in thisconfig and shutil.which('ipfs_cid'):
thisconfig['ipfs_cid'] = shutil.which('ipfs_cid')
if not thisconfig.get('ipfs_cid'):
logging.warning(_("ipfs_cid not found, skipping CIDv1 generation"))
logging.debug(_("ipfs_cid not found, skipping CIDv1 generation"))
for k in ['ndk_paths', 'java_paths']:
d = thisconfig[k]