Remove logging from daybreak network code to make it thread safe, there is a threadsafe replacement if you care (there's only like 4 logs in the code anyway); made event loop thread local so we can have one for each thread

This commit is contained in:
KimLS
2019-03-15 21:34:23 -07:00
parent 9dc83d389e
commit cbfd02b9ff
3 changed files with 19 additions and 8 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ namespace EQ
{
public:
static EventLoop &Get() {
static EventLoop inst;
static thread_local EventLoop inst;
return inst;
}