Skip to content

Commit

Permalink
Add time zone to old message warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed Jul 15, 2024
1 parent 52d98c9 commit 0ab93ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ async def main() -> None:
published = next_visit_message_initial["message"]["private_efdStamp"]
age = time.time() - published
if age > expire:
logging.warning("Message published at %s is %s old, ignoring.",
logging.warning("Message published on %s UTC is %s old, ignoring.",
time.ctime(published),
datetime.timedelta(seconds=age)
)
Expand Down

0 comments on commit 0ab93ca

Please sign in to comment.