From 4d3e050b91efbf2290243039041b9a3992c0590e Mon Sep 17 00:00:00 2001 From: Andrea Zonca Date: Wed, 12 Jan 2022 09:54:52 -0800 Subject: [PATCH] Add missing f-string in log message See https://github.com/pondd-project/pondd/issues/15#issuecomment-1010769179 --- src/demo_did.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo_did.py b/src/demo_did.py index abcbb56..d364d30 100644 --- a/src/demo_did.py +++ b/src/demo_did.py @@ -15,7 +15,7 @@ async def find_files(did_name: str, info: Dict[str, Any]) -> AsyncGenerator[Dict Returns: AsyncGenerator[Dict[str, any], None]: yield each file ''' - __log.info('Looking up dataset {did_name}', + __log.info(f'Looking up dataset {did_name}', extra={'requestId': info['request-id']}) if did_name != 'dataset1':