From 04dc297982c33f17187d4a74927ec906c5015216 Mon Sep 17 00:00:00 2001 From: Izzy Date: Sun, 19 Feb 2023 19:27:50 +0100 Subject: [PATCH] downgrade missing ipfs_cid WARNING to DEBUG --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 3d5224ff..ea3f219f 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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]