You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`
i want to use it in thread, as this code
i want log every thread with a single log file ,
can aixlog do it?
this 1.4 version do not work well , create two log files, but only ont have the log info
The text was updated successfully, but these errors were encountered:
I'm also interested in the answer to this, I'm using aixlog to log from different threads. In the console sometimes I get strange behaviour where the two messages from different threads and with different tags get mixed together: message A ends up being displayed with the wrong tag B, and message B never actually makes it to the console.
`
int i[2] = { 0,1 };
string t[2] = { R"(E:\product\qqm\cv_pro\log\t1.log)",R"(E:\product\qqm\cv_pro\log\t2.log)" };
thread t1(&xxxx, i[0], t[0].c_str());
thread t2(&xxxx, i[1], t[1].c_str());
t1.join();
t2.join();
system("pause");
`
i want to use it in thread, as this code
i want log every thread with a single log file ,
can aixlog do it?
this 1.4 version do not work well , create two log files, but only ont have the log info
The text was updated successfully, but these errors were encountered: