phuslu / log

Fastest structured logging
MIT License
672 stars 44 forks source link

[FEATURE REQUEST] - Allow logging in CSV format #51

Closed sujit-baniya closed 2 years ago

sujit-baniya commented 2 years ago

Is it possible to log in CSV format? if not maybe add the feature to add CSV

phuslu commented 2 years ago

check TSVLogger https://godocs.io/github.com/phuslu/log#TSVLogger

Note: no guarantee for column escaping, so better to use "\t"(I mean tsv) instead of "," (csv)

phuslu commented 2 years ago

If you also want a csv header, please check https://github.com/phuslu/log/issues/41