emilk / loguru

A lightweight C++ logging library
The Unlicense
1.76k stars 256 forks source link

some improvement points #229

Open amrezaee opened 1 year ago

amrezaee commented 1 year ago

Hi. I'm using your lib and it's great but some problems exist. It's a good thing to add #ifndef before NOMINMAX & WIN32_LEAN_AND_MEAN to prevent macro redefinition in environments where those two are defined. may be add green color to Info verbosity like many other logging libs or provide a way to customize verbosity colors. and does logging macros by default support c++ types like string or filesystem::path? i tried it, it worked but i get some portability warnings and supporting that types is a good feature. thanks.