From 0d549dc0394fb92a26acd0c72ab7354c699774a5 Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Thu, 11 Apr 2024 14:21:30 -0700 Subject: [PATCH] atproto: fix log message --- atproto.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/atproto.py b/atproto.py index d4061f5..9bd3f91 100644 --- a/atproto.py +++ b/atproto.py @@ -358,8 +358,7 @@ class ATProto(User, Protocol): assert copy_did == did assert coll == type - logger.info(f'Storing ATProto {action} {type} {rkey}: ', - dag_json.encode(record).decode()) + logger.info(f'Storing ATProto {action} {type} {rkey}: {dag_json.encode(record).decode()}') repo.apply_writes([Write(action=action, collection=type, rkey=rkey, record=record)])