Review: std.logger

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


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


More information about the Digitalmars-d mailing list