From 6ee3d8b184f74150ca4c73ac01a9336e461a3b22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Al=C3=A9p=C3=A9e?= Date: Tue, 7 Apr 2026 15:34:27 +0200 Subject: [PATCH] chore: remove unused log message --- cosmotech/coal/postgresql/runner.py | 1 - cosmotech/translation/coal/en-US/coal/services/postgresql.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/cosmotech/coal/postgresql/runner.py b/cosmotech/coal/postgresql/runner.py index 3634ccdf..34497bcd 100644 --- a/cosmotech/coal/postgresql/runner.py +++ b/cosmotech/coal/postgresql/runner.py @@ -56,7 +56,6 @@ def send_runner_metadata_to_postgresql( LOGGER.info(T("coal.services.postgresql.creating_table").format(schema_table=schema_table)) curs.execute(sql_create_table) conn.commit() - LOGGER.info(T("coal.services.postgresql.metadata")) sql_upsert = f""" INSERT INTO {schema_table} (id, name, last_csm_run_id, run_template_id) VALUES ($1, $2, $3, $4) diff --git a/cosmotech/translation/coal/en-US/coal/services/postgresql.yml b/cosmotech/translation/coal/en-US/coal/services/postgresql.yml index dc756c2c..57766b0a 100644 --- a/cosmotech/translation/coal/en-US/coal/services/postgresql.yml +++ b/cosmotech/translation/coal/en-US/coal/services/postgresql.yml @@ -24,5 +24,4 @@ connecting: "Connecting to PostgreSQL database" ingesting_data: "Ingesting data with mode: {mode}" ingestion_success: "Successfully ingested {rows} rows" creating_table: "Creating table {schema_table}" -metadata: "Metadata: {metadata}" metadata_updated: "Metadata updated"