Sergey Podobry

Results 151 comments of Sergey Podobry

It seems to be related to #178. Do you use static libs?

Let the issue be open for now. Shared (dynamic) libraries are isolated from each other (however on Linux it depends on compiler options, you can [explicitly specify the behavior](https://github.com/SergiusTheBest/plog#share-log-instances-across-modules-exe-dll-so-dylib)). So...

Yes, `PLOG_LOCAL` should isolate .so files and fix your issue. Did you set the pre-processor definitions for all .so projects?

I see. And you generate log file name according to .so name?

Yes, #178 will help you as you're in full control of logger instance visibility. I'll update documentation and samples (expect it ready next week). Meanwhile could you prepare a minimal...

@JoelSatkas It seems that https://github.com/JoelSatkas/PlogIssueSampleCode is a private repo. It returns 404 for me.

@JoelSatkas I'm able to fix the issue. Just need to run some checks on Windows.

@JoelSatkas Your issue is fixed by #219. First of all you need to update plog to the latest master. Your existing 1.1.5 doesn't support `PLOG_LOCAL` (note that you need to...

@JoelSatkas Also I've added the [NotShared](https://github.com/SergiusTheBest/plog/tree/master/samples/NotShared) sample to demonstrate your use case.