Review: std.logger

MrSmith via Digitalmars-d digitalmars-d at puremagic.com
Mon Jul 14 11:12:40 PDT 2014


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);
}


More information about the Digitalmars-d mailing list