| 107 | } |
| 108 | |
| 109 | void twutils::Log::AddAsync(const char *data) |
| 110 | { |
| 111 | AddAsyncJob *job = new AddAsyncJob(this, data); |
| 112 | common::SharedPtr<job::JobItem> itemParam(job); |
| 113 | job::JobQueue::DefaultQueue()->Enqueue(itemParam); |
| 114 | } |
| 115 | |
| 116 | void twutils::Log::Remove(const char *data) |
| 117 | { |
no test coverage detected