Update content_discovery_currently_popular_mostr.py

This commit is contained in:
Believethehype 2024-11-07 11:01:59 +01:00
parent 53520175b2
commit 69f1ac1be2

View File

@ -150,7 +150,7 @@ class DicoverContentCurrentlyPopularMostr(DVMTaskInterface):
# print(EventId.parse(entry[0]).to_bech32() + "/" + EventId.parse(entry[0]).to_hex() + ": " + str(entry[1]))
e_tag = Tag.parse(["e", entry[0]])
result_list.append(e_tag.as_vec())
if self.dvm_config.LOGLEVEL.value == LogLevel.DEBUG.value:
if self.dvm_config.LOGLEVEL.value >= LogLevel.DEBUG.value:
print("[" + self.dvm_config.NIP89.NAME + "] Filtered " + str(
len(result_list)) + " fitting events.")
# await cli.shutdown()
@ -208,7 +208,7 @@ class DicoverContentCurrentlyPopularMostr(DVMTaskInterface):
# Notes, reactions, zaps
# filter = Filter().author(keys.public_key())
if self.dvm_config.LOGLEVEL.value == LogLevel.DEBUG.value:
if self.dvm_config.LOGLEVEL.value >= LogLevel.DEBUG.value:
print("[" + self.dvm_config.NIP89.NAME + "] Syncing notes of the last " + str(
self.db_since) + " seconds.. this might take a while..")
@ -222,7 +222,7 @@ class DicoverContentCurrentlyPopularMostr(DVMTaskInterface):
await cli.database().delete(Filter().until(Timestamp.from_secs(
Timestamp.now().as_secs() - self.db_since))) # Clear old events so db doesn't get too full.
await cli.shutdown()
if self.dvm_config.LOGLEVEL.value == LogLevel.DEBUG.value:
if self.dvm_config.LOGLEVEL.value >= LogLevel.DEBUG.value:
print(
"[" + self.dvm_config.NIP89.NAME + "] Done Syncing Notes of the last " + str(
self.db_since) + " seconds..")