Sergey Podobry

Results 176 comments of Sergey Podobry

Oh, it's good you pinged me back. `plog::init` is designed for one time initialization and live for the whole app lifetime. In your case you need to use manual logger...

Excellent. I leave the issue unresolved until I update the documentation.

Could you post some code to describe the problem?

@sidd-kishan There is a build configuration for ARM. Did you try it?

I checked on Windows and Linux. So it looks it depends on istream implementation.

By the way, thanks for the good library. It's small and very easy to use. Nice work!

This is expected as you can't do much in a signal handler: you can't allocate memory, use `printf` or use synchronization primitives. You are allowed to call only async-signal-safe functions:...

Probably you need to update your vcpkg. Because the latest release is pushed to vcpkg a while ago: https://github.com/microsoft/vcpkg/blob/master/ports/plog/portfile.cmake

@supermyle Also you can use `make install`: ```bash git clone https://github.com/SergiusTheBest/plog.git cd plog cmake -Bbuild cd build make sudo make install ``` and to uninstall run from the build directory:...

> I found the workaround that doesn't involve disabling sandbox, which is probably something i REALLY do not want in an app that has access to all my passwords. @dzek69...