Skip to content

Commit

Permalink
fix: Format character in logger call
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias committed Mar 26, 2024
1 parent 83eb00e commit 77aaf20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/temporal/batch_exports/postgres_batch_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ async def insert_into_postgres_activity(inputs: PostgresInsertInputs) -> Records
"""Activity streams data from ClickHouse to Postgres."""
logger = await bind_temporal_worker_logger(team_id=inputs.team_id, destination="PostgreSQL")
logger.info(
"Batch exporting range %s - % to PostgreSQL: %s.%s.%s",
"Batch exporting range %s - %s to PostgreSQL: %s.%s.%s",
inputs.data_interval_start,
inputs.data_interval_end,
inputs.database,
Expand Down

0 comments on commit 77aaf20

Please sign in to comment.