How to use the @adobe/helix-shared.Logger.getLogger function in @adobe/helix-shared

To help you get started, we’ve selected a few @adobe/helix-shared examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github adobe / helix-cli / src / log-common.js View on Github external
function makeLogger({ logLevel = 'info', logFile = ['-'] } = {}) {
  return Logger.getLogger({
    category: 'cli',
    logFile,
    level: logLevel,
  });
}