mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 07:22:29 +03:00
common: make v2 signature message a debug message
https://gitlab.com/fdroid/fdroidserver/issues/703#note_238122327 closes #703
This commit is contained in:
parent
3354e66bd3
commit
e6bf586e74
1 changed files with 2 additions and 2 deletions
|
@ -2537,12 +2537,12 @@ def get_first_signer_certificate(apkpath):
|
|||
apkobject = _get_androguard_APK(apkpath)
|
||||
certs = apkobject.get_certificates_der_v2()
|
||||
if len(certs) > 0:
|
||||
logging.info(_('Using APK Signature v2'))
|
||||
logging.debug(_('Using APK Signature v2'))
|
||||
cert_encoded = certs[0]
|
||||
if not cert_encoded:
|
||||
certs = apkobject.get_certificates_der_v3()
|
||||
if len(certs) > 0:
|
||||
logging.info(_('Using APK Signature v3'))
|
||||
logging.debug(_('Using APK Signature v3'))
|
||||
cert_encoded = certs[0]
|
||||
|
||||
if not cert_encoded:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue