From 13652f14e8dff24ad2fbba87dddf1c7ab985a9b7 Mon Sep 17 00:00:00 2001 From: William Killerud Date: Thu, 1 Aug 2024 13:01:46 +0200 Subject: [PATCH] fix: make healthcheck logging less verbose by default --- lib/utils/healthcheck.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/healthcheck.js b/lib/utils/healthcheck.js index 3421643f..24548e02 100644 --- a/lib/utils/healthcheck.js +++ b/lib/utils/healthcheck.js @@ -74,7 +74,7 @@ const HealthCheck = class HealthCheck { } async check() { - this._log.info( + this._log.debug( `Sink health check started - testing with file ${this._name}`, ); @@ -120,7 +120,7 @@ const HealthCheck = class HealthCheck { throw new Error("File exist in sink"); // eslint-disable-next-line no-unused-vars } catch (error) { - this._log.info("Sink health check ended successfully. Sink is healthy"); + this._log.debug("Sink health check ended successfully. Sink is healthy"); } return true;