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

Is there a way to remove 'flutter:" from start of each line? #89

Open
jeff9315 opened this issue Dec 28, 2022 · 2 comments
Open

Is there a way to remove 'flutter:" from start of each line? #89

jeff9315 opened this issue Dec 28, 2022 · 2 comments
Labels
question Further information is requested

Comments

@jeff9315
Copy link

I just started using logging packages and I'm new to dart. This looks like a very nice package.

At the beginning of each output, there is a prefix of flutter: , is there a way to remove that?

@jeff9315 jeff9315 changed the title Remove 'flutter:" from start of each line Is there a way to remove 'flutter:" from start of each line? Dec 29, 2022
@Frezyx
Copy link
Owner

Frezyx commented Jun 16, 2023

Hello @jeff9315 !
Yes yo can setup any output for logger.

Check it in documentation of talker_logger

@Frezyx Frezyx added the question Further information is requested label Jun 16, 2023
@Ali1Ammar
Copy link

Talker(
  settings: TalkerSettings(
    enabled: true,
    useHistory: true,
    maxHistoryItems: 100,
    useConsoleLogs: true,
  ),
  logger: TalkerLogger(
    output: (message) => message.split('\n').forEach((v) => stdout.writeln(v)),
  ),
);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

3 participants