Coder Social home page Coder Social logo

Custom Log Handlers about node-slack-sdk HOT 4 CLOSED

slackapi avatar slackapi commented on May 17, 2024
Custom Log Handlers

from node-slack-sdk.

Comments (4)

evansolomon avatar evansolomon commented on May 17, 2024

You could do something like this as long as your logger conforms to the same (normal?) logging interface with info/debug/error/etc methods.

var client = new Slack(...)
client.logger = yourOwnLogger
client.login()

Manually messing with instance variables like that probably isn't the greatest thing in the world, so maybe something like client.setLogger() or an argument in the constructor would be a little nicer. But it should be possible currently.

from node-slack-sdk.

 avatar commented on May 17, 2024

Thanks - that's a great fix for now. We're looking into doing some re-design work on the client and I'll ensure that getting a better logging setup gets wrapped into the feature bucket for that

from node-slack-sdk.

njakob avatar njakob commented on May 17, 2024

Having a method to change the logger is indeed a better solution while changing the instance variable is a nice temporary hack. In case this feature is added to the client, would be just necessary to clearly define the logging interface since there is multiple standards for the methods names (error vs. err, warn ing vs. warn).

from node-slack-sdk.

 avatar commented on May 17, 2024

Ok, first off, I apologize for how long it's taken us to resolve this issue.

I just pushed the 2.0.0 release for this library, which is a ground up refactor with the aim of building a lib that both Slack and our external contributors can easily work with and improve.

It also allows you to pass in your own logger function when you construct a client, for example:


var RtmClient = require('slack-client').RtmClient;

var token = process.env.SLACK_API_TOKEN || '';

var rtm = new RtmClient(token, { logLevel: 'debug', logger: function() {} });
rtm.start();

rtm.on('message', function handleRtmMessage(message) {
  console.log(message);
});

So, I'd suggest that the best way to resolve these issues is to upgrade to the latest version. If you have any problems in doing that, please create a new issue and I'll try and help you in there.

from node-slack-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.