change level of appimage version logger

This commit is contained in:
Dominik Demuth 2023-11-07 17:50:32 +01:00
parent a1691f11a6
commit 5ea1ed6d0a
2 changed files with 2 additions and 4 deletions

View File

@ -271,5 +271,3 @@ class QAsciiReader(QtWidgets.QDialog, Ui_ascii_reader):
val = float(self.custom_input.text())
return val

View File

@ -278,8 +278,8 @@ class Updater:
m_time_zsync, checksum_zsync, appname = Updater.get_zsync()
m_time_file, checksum_file = Updater.get_appimage_info(filename)
logger.info(f'zsync information {m_time_zsync}, {checksum_zsync}, {appname}')
logger.info(f'file information {m_time_file}, {checksum_file}')
logger.debug(f'zsync information {m_time_zsync}, {checksum_zsync}, {appname}')
logger.debug(f'file information {m_time_file}, {checksum_file}')
if not ((checksum_file is not None) and (checksum_zsync is not None)):
return None, m_time_file, m_time_zsync