From e13bbe3d02f9f6ac78165e913171d861cfc5dcc7 Mon Sep 17 00:00:00 2001 From: Giuseppe Raffa <77052701+sesee3@users.noreply.github.com> Date: Tue, 14 Apr 2026 12:37:34 +0200 Subject: [PATCH] feat: update logging to display InfluxDB token in initialization message --- api/src/storage/influx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/storage/influx.js b/api/src/storage/influx.js index d6292c1..04aadcf 100644 --- a/api/src/storage/influx.js +++ b/api/src/storage/influx.js @@ -10,7 +10,7 @@ const client = new InfluxDB({ url, token }) const write = client.getWriteApi(org, boatTelemetry); const querying = client.getQueryApi(org); -console.log("InfluxDB client initialized with config:", { url, org, token: token ? '***' : null }); +console.log("InfluxDB client initialized with config:", { url, org, token }); async function append(measurement, sensor, data) { const point = new Point(measurement)