GithubHelp home page GithubHelp logo

Comments (4)

pimterry avatar pimterry commented on June 11, 2024

In general this isn't possible, see the docs for a little more explanation.

In your specific case, you might be in luck though. You can't avoid this if you wrap the logging functions, as you've done here, but you can if you bind() your extra arguments in. For a message prefix like you're using, you can do that with something like:

return rawMethod.bind(console, colors.blue(String(loggerName)))

That will pass colors.blue(String(loggerName)) as an implicit first argument on all calls, making log.warn("msg") equivalent to console.warn(colors.blue(String(loggerName)), "msg"). Does that work for you?

(Sorry, posted half-finished and closed this by accident!)

from loglevel.

w93163red avatar w93163red commented on June 11, 2024

Thanks for the quick response! When I tried your solution, the log is not shown in the console.

import log from 'loglevel';

const originalFactory = log.methodFactory;
log.methodFactory = (methodName, level, loggerName) => {
  const rawMethod = originalFactory(methodName, level, loggerName);
  return function (message) {
    // rawMethod.apply(`${colors.blue(String(loggerName))}: ${message}`);
    return rawMethod.bind(
      console,
      `${colors.blue(String(loggerName))}: ${message}`,
    );
  };
};

if (IS_DEV) {
  log.setLevel('debug');
} else {
  log.setLevel('info');
}

from loglevel.

pimterry avatar pimterry commented on June 11, 2024

Ah, no - bind returns a changed function, which means that you don't need the wrapper function any more. The full example should look like this:

import log from 'loglevel';

const originalFactory = log.methodFactory;
log.methodFactory = (methodName, level, loggerName) => {
  const rawMethod = originalFactory(methodName, level, loggerName);
  return rawMethod.bind(
      console,
      colors.blue(String(loggerName))
  );
};

if (IS_DEV) {
  log.setLevel('debug');
} else {
  log.setLevel('info');
}

The only way to ensure your wrapper's code doesn't appear as the source of the logging is to remove the wrapper entirely.

from loglevel.

w93163red avatar w93163red commented on June 11, 2024

Nice! It works!!! Deeply appreciate your help!

from loglevel.

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.