August 22, 2013
On 8/22/13, Robert Schadek <realburner@gmx.de> wrote:
> People seamed to be unhappy with the naming and the way of configuration.
>
> Docu: http://burner.github.io/phobos/phobos-prerelease/std_logger.html

Unfortunately they still won't be happy, because method names do not follow the convention[1], specifically:

```
Functions
    Function names should be camelCased, so their first letter is
lowercase. This includes properties and member functions.
```

Your functions begin with uppercase.

[1] : http://dlang.org/dstyle.html