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

Add multiple transports at once #9

Open
johntimothybailey opened this issue Jun 26, 2022 · 0 comments
Open

Add multiple transports at once #9

johntimothybailey opened this issue Jun 26, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@johntimothybailey
Copy link
Contributor

As a developer I'd to add Transports at once

void main() {
  Crispin().addTransports([
      LoggerCrispinTransport(level: 'warn'),
      SentryCrispinTransport(level: 'error'),
  ]);
}

as an option to

void main() {
  Crispin().addTransport(LoggerCrispinTransport(level: 'warn'));
  Crispin().addTransport(SentryCrispinTransport(level: 'error'));
}

However, the use case is different for both.

@johntimothybailey johntimothybailey added the enhancement New feature or request label Jun 26, 2022
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