How to use the @adobe/helix-log.info function in @adobe/helix-log

To help you get started, we’ve selected a few @adobe/helix-log 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 / jsonschema2md / lib / markdownWriter.js View on Github external
function simpletype(prop) {
  const { type } = prop;
  if (prop.$ref !== undefined) {
    if (prop.$linkVal !== undefined) {
      prop.simpletype = prop.$linkVal;
    } else {
      info(`unresolved reference: ${prop.$ref}`);
      prop.simpletype = 'reference';
    }
  } else if (prop.enum !== undefined) {
    prop.simpletype = '`enum`';
    if (prop['meta:enum'] === undefined) {
      prop['meta:enum'] = {};
    }
    for (let i = 0; i < prop.enum.length; i += 1) {
      if (prop['meta:enum'][prop.enum[i]] === undefined) {
        //  setting an empty description for each unknown enum
        prop['meta:enum'][prop.enum[i]] = '';
      }
    }
  } else if (prop.const !== undefined) {
    prop.simpletype = '`const`';
  } else if (type === 'string') {

@adobe/helix-log

Logging for Helix

Apache-2.0
Latest version published 23 days ago

Package Health Score

87 / 100
Full package analysis

Similar packages