www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 15954] New: std.experimental.logger repeats wstring message

https://issues.dlang.org/show_bug.cgi?id=15954

          Issue ID: 15954
           Summary: std.experimental.logger repeats wstring message
           Product: D
           Version: D2
          Hardware: All
                OS: Windows
            Status: NEW
          Severity: minor
          Priority: P1
         Component: phobos
          Assignee: nobody puremagic.com
          Reporter: Jesse.K.Phillips+D gmail.com

When using std.experimental.logger to log a wstring, the message is repeated
multiple times, but only in pieces.

------------------
import std.conv;
import std.experimental.logger;

void main() {
    log("123456789".to!wstring);
}
-------------------

2016-04-25T08:37:26.217:test.d:main:5
112123123412345123456123456712345678123456789

--
Apr 25 2016