How to use the modern-logger.error function in modern-logger

To help you get started, we’ve selected a few modern-logger 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 hfreire / get-me-a-date / src / routes / recommendations / get-recommendation.js View on Github external
.catch((error) => {
        Logger.error(error)

        reply(Boom.badImplementation(error.message, error))
      })
  }
github hfreire / get-me-a-date / src / server.js View on Github external
    .catch((error) => Logger.error(error))
    .finally(() => {
github hfreire / get-me-a-date / src / routes / settings / get-settings.js View on Github external
.catch((error) => {
        Logger.error(error)

        reply(Boom.badImplementation(error.message, error))
      })
  }
github hfreire / get-me-a-date / src / routes / stats.js View on Github external
.catch((error) => {
        Logger.error(error)

        reply(Boom.badImplementation(error.message, error))
      })
  }
github hfreire / get-me-a-date / src / routes / settings / delete-settings.js View on Github external
.catch((error) => {
        Logger.error(error)

        reply(Boom.badImplementation(error.message, error))
      })
  }
github hfreire / get-me-a-date / src / routes / recommendations / like-recommendation.js View on Github external
.catch((error) => {
        Logger.error(error)

        reply(Boom.badImplementation(error.message, error))
      })
  }
github hfreire / get-me-a-date / src / routes / settings / update-settings.js View on Github external
.catch((error) => {
        Logger.error(error)

        reply(Boom.badImplementation(error.message, error))
      })
  }
github hfreire / get-me-a-date / src / routes / recommendations / checkout-recommendation.js View on Github external
.catch((error) => {
        Logger.error(error)

        reply(Boom.badImplementation(error.message, error))
      })
  }

modern-logger

A modern logger built on top of Winston with native support for emojis and Rollbar

MIT
Latest version published 3 years ago

Package Health Score

39 / 100
Full package analysis

Similar packages