fix debug messages

This commit is contained in:
caryoscelus 2022-12-10 16:39:18 +00:00
parent 5e39f37fba
commit 3c7670a703

View file

@ -85,16 +85,16 @@ class ContentManager(object):
new_ts = int(float(new_content.get('modified', 0))) new_ts = int(float(new_content.get('modified', 0)))
old_ts = int(float(old_content.get('modified', 0))) old_ts = int(float(old_content.get('modified', 0)))
if new_ts < old_ts: if new_ts < old_ts:
self.log.debug('got older version of {content_inner_path} ({new_ts} < {old_ts}), ignoring') self.log.debug(f'got older version of {content_inner_path} ({new_ts} < {old_ts}), ignoring')
return [], [] return [], []
elif new_ts == old_ts: elif new_ts == old_ts:
self.log.debug('got same timestamp version of {content_inner_path} ({new_ts}), ignoring') self.log.debug(f'got same timestamp version of {content_inner_path} ({new_ts}), ignoring')
return [], [] return [], []
except Exception as err: except Exception as err:
self.log.warning(f'{content_path} load error: {Debug.formatException(err)}') self.log.warning(f'{content_path} load error: {Debug.formatException(err)}')
return [], [] return [], []
else: else:
self.log.debug("Content.json not exist: %s" % content_path) self.log.debug(f'Content.json not exist: {content_path}')
return [], [] # Content.json not exist return [], [] # Content.json not exist
try: try: