Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Pick what to log" object #3

Open
hiaux0 opened this issue May 9, 2021 · 0 comments
Open

"Pick what to log" object #3

hiaux0 opened this issue May 9, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@hiaux0
Copy link
Owner

hiaux0 commented May 9, 2021

Proposal

Before

logger.debug(['foo']) // foo
logger.debug(['bar']) // bar

After

{
  'foo': false,
  'bar': true
}
logger.debug(['foo']) // not logged
logger.debug(['bar']) // bar

Consider

logger.debug(['foo %s', 'baz']) // foo baz
// Simply, like this?
{
  'foo %s': false,
}

Further Enhancements

  • by regexp
  • by id
  • by index
@hiaux0 hiaux0 added the enhancement New feature or request label May 9, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant