From e0ae4d3d696bd5d4d6337fb0cf4ce14f37c43062 Mon Sep 17 00:00:00 2001 From: Roman Axelrod Date: Thu, 17 Nov 2022 11:21:43 +0200 Subject: [PATCH] Print log. --- server.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/server.js b/server.js index 1e8d8f4..012282b 100755 --- a/server.js +++ b/server.js @@ -32,6 +32,8 @@ const PRODUCTION_REGISTRY_URL = 'https://blocks-registery.axe-web.com'; const {isDev, modulesPath, projectPath, developmentBlockName} = getConfigs(); const blocksRegistry = isDev ? 'http://localhost:3020' : PRODUCTION_REGISTRY_URL; + + /** * Init server */ @@ -401,3 +403,13 @@ function handlebarLayoutsPath() { return path.join(...arguments) .replace(/\\/g, '/'); // Windows path issue. Fix all "\" for Handlebars. } + +console.log('----------------------------------\n') +console.log('Local Details', process.versions, '\n'); +console.log('Configs', { + isDev, + modulesPath, + projectPath, + developmentBlockName +}); +console.log('\n----------------------------------\n')