easyloggingpp
easyloggingpp copied to clipboard
No logs are written under several user accounts.
I am using easyloggingpp in vc++. Visual studio version is 2022. The log module is in the dll and my project has a structure in which several processes use this dll. First, load the dll from process A and save the logs to the a.log file. At this time, the log file is created and the log is stored properly. Process A runs as the "Auser" account. Second, load the dll in the B process and save the logs to B.log file. However, at this time, the log file is generated, but the logs is not written. Process B runs as the "Buser" account. In other words, if you load the same dll in processes executed with different accounts, the logs is not stored on one side. What is the cause of this?