From 5e0ba59fc33f6630a575821de268949dee50a4fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=84=86=E8=96=AF=E9=A5=BC?= Date: Wed, 11 Dec 2024 09:34:50 +0800 Subject: [PATCH] Update setENV.mjs --- src/function/setENV.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/function/setENV.mjs b/src/function/setENV.mjs index 094ba8d..1638992 100644 --- a/src/function/setENV.mjs +++ b/src/function/setENV.mjs @@ -12,9 +12,9 @@ export default function setENV(name, platforms, database) { Console.log("☑️ Set Environment Variables"); const { Settings, Caches, Configs } = getStorage(name, platforms, database); /***************** Settings *****************/ - Console.info(`typeof Settings: ${typeof Settings}`, `Settings: ${JSON.stringify(Settings)}`); + Console.info(`typeof Settings: ${typeof Settings}`, `Settings: ${JSON.stringify(Settings, null, 2)}`); /***************** Caches *****************/ - //Console.debug(`typeof Caches: ${typeof Caches}`, `Caches: ${JSON.stringify(Caches)}`); + //Console.debug(`typeof Caches: ${typeof Caches}`, `Caches: ${JSON.stringify(Caches, null, 2)}`); /***************** Configs *****************/ Console.log("✅ Set Environment Variables"); return { Settings, Caches, Configs };