Skip to content

Commit

Permalink
source-hubspot-native: fix logging error
Browse files Browse the repository at this point in the history
Small fix to properly quote a key in a logging parameters object.
  • Loading branch information
williamhbaker committed Dec 17, 2024
1 parent 2fc6ece commit b8c7b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source-hubspot-native/source_hubspot_native/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ async def fetch_search_objects(
if until and this_mod_time > until:
log.info(
"ignoring search result with record modification time that is later than maximum search window",
{id: r.id, "this_mod_time": this_mod_time, "until": until},
{"id": r.id, "this_mod_time": this_mod_time, "until": until},
)
continue

Expand Down

0 comments on commit b8c7b0d

Please sign in to comment.