On Monday, 14 July 2014 at 18:54:35 UTC, Robert burner Schadek wrote:
On Monday, 14 July 2014 at 18:12:44 UTC, MrSmith wrote:
While trying to use logger i've found that this doesn't work. The execution stalls and thread is not executed, while eith writeln it works fine.

import std.logger;
import std.parallelism;

void worker()
{
        log("in worker");
}

void main()
{
        auto pool = taskPool;
        pool.put(task!worker);
}

can you make an issue out of it here https://github.com/burner/logger, so we
don't lose track

Here it is https://github.com/burner/logger/issues/10

Reply via email to