Skip to content

Commit

Permalink
Update setENV.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
VirgilClyne committed Dec 11, 2024
1 parent eccf9d8 commit 5e0ba59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/function/setENV.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit 5e0ba59

Please sign in to comment.