From 33c1214c299ec582ecce977de3cd00f21d46fb7d Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 24 May 2024 11:39:58 +0200 Subject: [PATCH] fix: update log message formatting in env.util.ts The updated code includes a refactoring of the debug log message in the `get` method of `env.util.ts`. The log message is now constructed using template strings, achieving a cleaner and more readable format. --- src/utils/env.util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/env.util.ts b/src/utils/env.util.ts index ecbf893..b5b2224 100644 --- a/src/utils/env.util.ts +++ b/src/utils/env.util.ts @@ -12,7 +12,7 @@ export class EnvUtils { get(envName: string) { const value = this._envs[`${envName.toString()}`]?.toString(); - this.log.debug(`Getting environment variable..`, `${envName} = "${value}"`); + this.log.debug("Getting environment variable..", `${envName} = "${value}"`); return value || null; } }