Milad-Akarie / pretty_dio_logger

MIT License
230 stars 52 forks source link

Have any option to print log as JSON format? #16

Closed hasancse91 closed 2 months ago

hasancse91 commented 3 years ago

Hey there! Thank you for your awesome library.

Using your library I can print log like this format:

{
    foo: "bar" // foo is here without double quote
}

Have any way to print the JSON with actual format?

{
   "foo": "bar" // foo is here inside double quote.
}

I need to print log in JSON format. Is it possible in your library with any configuration? Or have any plan to do something like that? Thanks.

Milad-Akarie commented 2 months ago

done by default now

hasancse91 commented 2 months ago

Thanks.