How to use the @slack/logger.ConsoleLogger function in @slack/logger

To help you get started, we’ve selected a few @slack/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 slackapi / bolt / src / ExpressReceiver.ts View on Github external
constructor({
    signingSecret = '',
    logger = new ConsoleLogger(),
    endpoints = { events: '/slack/events' },
    agent = undefined,
    clientTls = undefined,
  }: ExpressReceiverOptions) {
    super();

    this.app = express();
    this.app.use(this.errorHandler.bind(this));
    // TODO: what about starting an https server instead of http? what about other options to create the server?
    this.server = createServer(this.app);
    this.axios = axios.create(Object.assign(
      {
        httpAgent: agent,
        httpsAgent: agent,
      },
      clientTls,

@slack/logger

Logging utility used by Node Slack SDK

MIT
Latest version published 9 months ago

Package Health Score

97 / 100
Full package analysis